diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-07 16:38:31 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-07 16:38:31 +0000 |
commit | 5b4efda5148fc5ac79b5aaf02eb4dbf6c68c866b (patch) | |
tree | 6ed11312a9b225fa18976cb602efd4b38fd9d48a | |
parent | c1112aa5fb7da9996e5a0ebe8689e5cf9ca72cee (diff) | |
download | external_python_setuptools-5b4efda5148fc5ac79b5aaf02eb4dbf6c68c866b.tar.gz external_python_setuptools-5b4efda5148fc5ac79b5aaf02eb4dbf6c68c866b.tar.bz2 external_python_setuptools-5b4efda5148fc5ac79b5aaf02eb4dbf6c68c866b.zip |
Fix problems upgrading an already-installed setuptools version.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041091
-rwxr-xr-x | ez_setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ez_setup.py b/ez_setup.py index 674138d3..e7440aa9 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -150,7 +150,7 @@ def main(argv, version=DEFAULT_VERSION): from setuptools.command.easy_install import main except ImportError: from easy_install import main - main(list(argv)+[req]) + main(list(argv)+[download_setuptools()]) sys.exit(0) # try to force an exit else: if argv: |