summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2007-10-08 11:48:07 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2007-10-08 11:48:07 +0000
commit0b8a19808b8a0addebd8591a1b1c5edd0ac3ed9f (patch)
tree49090b8bcd194f87a52f9683051625e5b4de96e2 /setuptools/command
parentbd687e82caa7842d5fb7dd8a11242b364efdf78a (diff)
downloadpython-setuptools-0b8a19808b8a0addebd8591a1b1c5edd0ac3ed9f.tar.gz
Prevent --help-commands and other junk from showing under
Python 2.5 when running "easy_install" directly. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@58373 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 5d0fae6..3ff147e 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -1661,6 +1661,7 @@ usage: %(script)s [options] requirement_or_url ...
distutils.core.gen_usage = old_gen_usage
class DistributionWithoutHelpCommands(Distribution):
+ common_usage = ""
def _show_help(self,*args,**kw):
with_ei_usage(lambda: Distribution._show_help(self,*args,**kw))
@@ -1678,4 +1679,3 @@ usage: %(script)s [options] requirement_or_url ...
-