diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-12-29 10:25:02 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-12-29 10:25:02 -0500 |
commit | fd9ba054c067505de376b0081fa638f2e0033d33 (patch) | |
tree | ae793ccee03c9dd8a849e56e1dbf1fdd63c2205b | |
parent | 03882a7d0d48dd842f95a2644d33f63d31f1e8a8 (diff) | |
parent | a606f1f9b98810666dea3682e7def0d322988b3b (diff) | |
download | external_python_setuptools-fd9ba054c067505de376b0081fa638f2e0033d33.tar.gz external_python_setuptools-fd9ba054c067505de376b0081fa638f2e0033d33.tar.bz2 external_python_setuptools-fd9ba054c067505de376b0081fa638f2e0033d33.zip |
Merged in yarikoptic/setuptools (pull request #29)
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 |