diff options
| author | Greg Ward <gward@python.net> | 2000-04-26 01:14:33 (GMT) |
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-04-26 01:14:33 (GMT) |
| commit | 839d532e50220ad75642c597df945e2688bf63ab (patch) | |
| tree | 27b56db4157ce71df9e72cdf90356579556687bc /Lib/distutils/command/sdist.py | |
| parent | 1b8e1d4c0dd1a1d738ffdac053446117f6d70656 (diff) | |
| download | cpython-839d532e50220ad75642c597df945e2688bf63ab.zip cpython-839d532e50220ad75642c597df945e2688bf63ab.tar.gz cpython-839d532e50220ad75642c597df945e2688bf63ab.tar.bz2 | |
Supply short form for --manifest-only (-o) and --force-manifest (-f)
options.
Diffstat (limited to 'Lib/distutils/command/sdist.py')
| -rw-r--r-- | Lib/distutils/command/sdist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 6791718..f644e9f 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -30,9 +30,9 @@ class sdist (Command): ('use-defaults', None, "include the default file set in the manifest " "[default; disable with --no-defaults]"), - ('manifest-only', None, + ('manifest-only', 'o', "just regenerate the manifest and then stop"), - ('force-manifest', None, + ('force-manifest', 'f', "forcibly regenerate the manifest and carry on as usual"), ('formats=', None, "formats for source distribution (tar, ztar, gztar, bztar, or zip)"), |
