diff options
author | PJ Eby <distutils-sig@python.org> | 2005-07-09 04:25:49 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-07-09 04:25:49 +0000 |
commit | db0f52341dfc8237e655037e5ba632029da44887 (patch) | |
tree | 6f48db3195df66ea468851e68f0dab18c80572c5 /setuptools/command/bdist_egg.py | |
parent | b0c3783bc20b07c798b45e84bcf4e02df03036e9 (diff) | |
download | external_python_setuptools-db0f52341dfc8237e655037e5ba632029da44887.tar.gz external_python_setuptools-db0f52341dfc8237e655037e5ba632029da44887.tar.bz2 external_python_setuptools-db0f52341dfc8237e655037e5ba632029da44887.zip |
Fix typos in option specs for bdist_egg.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041103
Diffstat (limited to 'setuptools/command/bdist_egg.py')
-rw-r--r-- | setuptools/command/bdist_egg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py index 6cc818d3..74a2cd26 100644 --- a/setuptools/command/bdist_egg.py +++ b/setuptools/command/bdist_egg.py @@ -52,14 +52,14 @@ class bdist_egg(Command): ('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', ] |