[Python-checkins] python/nondist/sandbox/setuptools/setuptools/command bdist_egg.py, 1.21, 1.22

pje@users.sourceforge.net pje at users.sourceforge.net
Sat Jul 9 06:25:52 CEST 2005


Update of /cvsroot/python/python/nondist/sandbox/setuptools/setuptools/command
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv738/setuptools/command

Modified Files:
	bdist_egg.py 
Log Message:
Fix typos in option specs for bdist_egg.


Index: bdist_egg.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setuptools/setuptools/command/bdist_egg.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- bdist_egg.py	6 Jul 2005 01:37:41 -0000	1.21
+++ bdist_egg.py	9 Jul 2005 04:25:49 -0000	1.22
@@ -52,14 +52,14 @@
         ('keep-temp', 'k',
                      "keep the pseudo-installation tree around after " +
                      "creating the distribution archive"),
-        ('dist-dir=', 'd',
+        ('dist-dir=', 'b',
                      "directory to put final built distributions in"),
         ('skip-build', None,
                      "skip rebuilding everything (for testing/debugging)"),
     ]
 
     boolean_options = [
-        'keep-temp', 'skip-build', 'relative','tag-date','tag-svn-revision'
+        'keep-temp', 'skip-build',
     ]
 
 



More information about the Python-checkins mailing list