diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-12 23:22:06 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-12 23:22:06 +0000 |
commit | 653e048db21c8590677c65272925e0a91338b500 (patch) | |
tree | 39a08469ac4ee0739358aba3b4da600eef8611c8 /ez_setup.py | |
parent | 878bea056e4a1037728d5061e2e6ce4b1eaaade8 (diff) | |
download | external_python_setuptools-653e048db21c8590677c65272925e0a91338b500.tar.gz external_python_setuptools-653e048db21c8590677c65272925e0a91338b500.tar.bz2 external_python_setuptools-653e048db21c8590677c65272925e0a91338b500.zip |
Add a message explaining that you can use -U setuptools to reinstall or
upgrade setuptools.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041121
Diffstat (limited to 'ez_setup.py')
-rwxr-xr-x | ez_setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ez_setup.py b/ez_setup.py index 083acb76..0270d34a 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -157,8 +157,8 @@ def main(argv, version=DEFAULT_VERSION): from setuptools.command.easy_install import main main(argv) else: - print "Setuptools successfully installed or upgraded." - + print "Setuptools version",version,"or greater has been installed." + print '(Run "ez_setup.py -U setuptools" to reinstall or upgrade.)' if __name__=='__main__': main(sys.argv[1:]) |