Skip to content

Commit

Permalink
Fix hashbangs to python3 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
bennahugo authored Jan 4, 2022
1 parent 6297362 commit 1f9ed80
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Kittens/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

#
Expand Down
2 changes: 1 addition & 1 deletion Kittens/pixmaps.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3

#
# % $Id$
Expand Down
2 changes: 1 addition & 1 deletion Kittens/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

#
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from setuptools import setup, find_packages

Expand Down

0 comments on commit 1f9ed80

Please sign in to comment.