Skip to content

Commit a6b3952

Browse files
committed
Change hash-bang for maximum compatability
This is to fix kivy#88 The ideal solution, according to Python PEP 0394, would seem to be '#!/usr/bin/env python2', however that PEP is unfortunately not well-followed by OSX and even Linux distros like Arch and Debian Squeeze. Because of this, and because Kivy currently only supports  Python2.7, the more practical solution is '#!/usr/bin/env python2.7'.
1 parent 60a324b commit a6b3952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python2
1+
#!/usr/bin/env python2.7
22

33
from os.path import dirname, join, isfile, realpath, relpath, split
44
from zipfile import ZipFile

0 commit comments

Comments
 (0)