[Python-checkins] r50593 - sandbox/branches/setuptools-0.6/setuptools/command/egg_info.py

phillip.eby python-checkins at python.org
Tue Jul 11 21:51:23 CEST 2006


Author: phillip.eby
Date: Tue Jul 11 21:51:23 2006
New Revision: 50593

Modified:
   sandbox/branches/setuptools-0.6/setuptools/command/egg_info.py
Log:
Fix doubled --tag-build help display (backport from trunk)


Modified: sandbox/branches/setuptools-0.6/setuptools/command/egg_info.py
==============================================================================
--- sandbox/branches/setuptools-0.6/setuptools/command/egg_info.py	(original)
+++ sandbox/branches/setuptools-0.6/setuptools/command/egg_info.py	Tue Jul 11 21:51:23 2006
@@ -28,7 +28,6 @@
         ('no-svn-revision', 'R',
             "Don't add subversion revision ID [default]"),
         ('no-date', 'D', "Don't include date stamp [default]"),
-        ('tag-build=', 'b', "Specify explicit tag to add to version number"),
     ]
 
     boolean_options = ['tag-date', 'tag-svn-revision']
@@ -39,6 +38,7 @@
 
 
 
+
     def initialize_options (self):
         self.egg_name = None
         self.egg_version = None


More information about the Python-checkins mailing list