diff options
author | Yaroslav Halchenko <debian@onerussian.com> | 2013-12-17 09:27:37 -0500 |
---|---|---|
committer | Yaroslav Halchenko <debian@onerussian.com> | 2013-12-17 09:27:37 -0500 |
commit | a606f1f9b98810666dea3682e7def0d322988b3b (patch) | |
tree | 321a0e5af5fe87a7a69ea40505e6cbc1c7309947 | |
parent | 9eb9ea1b62b34d83504d0331783a2947985cf0e4 (diff) | |
download | external_python_setuptools-a606f1f9b98810666dea3682e7def0d322988b3b.tar.gz external_python_setuptools-a606f1f9b98810666dea3682e7def0d322988b3b.tar.bz2 external_python_setuptools-a606f1f9b98810666dea3682e7def0d322988b3b.zip |
ENH: use #!/usr/bin/env python for the shebang instead of non-working on POSIX systems plain #!python
-rw-r--r-- | ez_setup.py | 2 | ||||
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ez_setup.py b/ez_setup.py index fca25de9..9dd695a1 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -1,4 +1,4 @@ -#!python +#!/usr/bin/env python """Bootstrap setuptools installation To use setuptools in your package's setup.py, include this diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 9775bffc..08ebf3e5 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1,4 +1,4 @@ -#!python +#!/usr/bin/env python """ Easy Install |