Shebang problem
cixtor opened this issue · 1 comments
cixtor commented
When executed without use the binary python
, just using the Shebang specification in the file xsssniper.py
, it throws an error like this:
$ python xsssniper.py --help
[X] Please install hgapi module:
$ pip install
$ ./xsssniper.py --help
./xsssniper.py: line 4: try:: command not found
./xsssniper.py: line 6: except: command not found
Warning: unknown mime-type for "\n[X] Please install hgapi module:" -- using "application/octet-stream"
Error: no such file "\n[X] Please install hgapi module:"
Warning: unknown mime-type for " $ pip install \n" -- using "application/octet-stream"
Error: no such file " $ pip install \n"
./xsssniper.py: line 11: syntax error near unexpected token `from'
./xsssniper.py: line 11: `from optparse import OptionParser'
The error was fixed just with a single character in the Shebang specification:
$ diff xsssniper.py xsssniper.py.fork
1c1
< #/usr/bin/env python
---
> #!/usr/bin/env python
gbrindisi commented
Thanks, fixed.