use /usr/bin/env in shebang
This allows the path to the python binary to be overwritten using environment variables (for example in virtualenvs).
This commit is contained in:
parent
20769b1ef0
commit
5f3e093a77
2 changed files with 2 additions and 2 deletions
2
make.py
2
make.py
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
import xmlrpc.client
|
import xmlrpc.client
|
||||||
import traceback
|
import traceback
|
||||||
import socket
|
import socket
|
||||||
|
|
Loading…
Add table
Reference in a new issue