summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/sdist.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-24 00:23:20 (GMT)
committerGreg Ward <gward@python.net>2000-06-24 00:23:20 (GMT)
commit2ff7887270385bd6dddc2d5461486334b4fec8bc (patch)
tree35c3f4814ec717a72c03a70d24bad2cccf1ac3aa /Lib/distutils/command/sdist.py
parentffcaf2dd72ef0735d0eea125f1789d48c575f9b5 (diff)
downloadcpython-2ff7887270385bd6dddc2d5461486334b4fec8bc.zip
cpython-2ff7887270385bd6dddc2d5461486334b4fec8bc.tar.gz
cpython-2ff7887270385bd6dddc2d5461486334b4fec8bc.tar.bz2
Stylistic/formatting changes to Rene Liebscher's '--help-xxx' patch.
Diffstat (limited to 'Lib/distutils/command/sdist.py')
-rw-r--r--Lib/distutils/command/sdist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index ded8ec2..93e53bb 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -36,7 +36,7 @@ class sdist (Command):
('force-manifest', 'f',
"forcibly regenerate the manifest and carry on as usual"),
('formats=', None,
- "formats for source distribution"),
+ "formats for source distribution (comma-separated list)"),
('keep-tree', 'k',
"keep the distribution tree around after creating " +
"archive file(s)"),
@@ -61,7 +61,7 @@ class sdist (Command):
help_options = [
('help-formats', None,
- "lists available distribution formats", show_formats),
+ "list available distribution formats", show_formats),
]
negative_opts = {'use-defaults': 'no-defaults'}