diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-16 19:13:27 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-16 19:13:27 (GMT) |
commit | b9cec6a30f77c4c0ab208053ffafc02fddd01962 (patch) | |
tree | 04380e55c6d702ad52aeb64db441343b6f8555e3 /Lib/distutils/command/bdist_dumb.py | |
parent | b8cd3e4e30d3219ecf00ce7f114a15746561ea87 (diff) | |
download | cpython-b9cec6a30f77c4c0ab208053ffafc02fddd01962.zip cpython-b9cec6a30f77c4c0ab208053ffafc02fddd01962.tar.gz cpython-b9cec6a30f77c4c0ab208053ffafc02fddd01962.tar.bz2 |
Issue #16314: Added support for the LZMA compression in distutils.
Diffstat (limited to 'Lib/distutils/command/bdist_dumb.py')
-rw-r--r-- | Lib/distutils/command/bdist_dumb.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py index 4405d12..f1bfb24 100644 --- a/Lib/distutils/command/bdist_dumb.py +++ b/Lib/distutils/command/bdist_dumb.py @@ -22,7 +22,8 @@ class bdist_dumb(Command): "platform name to embed in generated filenames " "(default: %s)" % get_platform()), ('format=', 'f', - "archive format to create (tar, ztar, gztar, zip)"), + "archive format to create (tar, gztar, bztar, xztar, " + "ztar, zip)"), ('keep-temp', 'k', "keep the pseudo-installation tree around after " + "creating the distribution archive"), |