Skip to content

Commit

Permalink
Fix python2 shebang.
Browse files Browse the repository at this point in the history
  • Loading branch information
Red54 authored and wallproxy committed Jun 20, 2013
1 parent 04b8ca5 commit e54a856
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion local/startup.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
import sys, os, os.path as ospath
#os.environ['DISABLE_GEVENT'] = '1'
dir = ospath.dirname(sys.argv[0])
Expand Down
2 changes: 1 addition & 1 deletion server/uploader.py
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
import sys, os.path as ospath
dir = ospath.dirname(sys.argv[0])
sys.argv[1:1] = [ospath.join(dir, 'uploader')]
Expand Down

0 comments on commit e54a856

Please sign in to comment.