summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/command
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-09-19 13:12:23 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-09-19 13:12:23 (GMT)
commit505f0ebf8839cc0a44d06b2cef96a20e5e693e74 (patch)
tree18108900184fe11ad7b036bf4bd2b06de5302b75 /Lib/packaging/command
parentc1b7e7f8bbcae936a5e75277e9e86d9ebec5469f (diff)
downloadcpython-505f0ebf8839cc0a44d06b2cef96a20e5e693e74.zip
cpython-505f0ebf8839cc0a44d06b2cef96a20e5e693e74.tar.gz
cpython-505f0ebf8839cc0a44d06b2cef96a20e5e693e74.tar.bz2
Final bag of small changes coming from distutils2.
- minor cleanup in Metadata - trigger creation of the sysconfig._CONFIG_VARS dict - home_page is used over home-page: it’s not a compound word, it’s an escaped space Distutils2 is now synchronized with Packaging.
Diffstat (limited to 'Lib/packaging/command')
-rw-r--r--Lib/packaging/command/bdist_dumb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/packaging/command/bdist_dumb.py b/Lib/packaging/command/bdist_dumb.py
index d5773f0..309f64f 100644
--- a/Lib/packaging/command/bdist_dumb.py
+++ b/Lib/packaging/command/bdist_dumb.py
@@ -5,9 +5,9 @@ sys.prefix or sys.exec_prefix.
"""
import os
-
from shutil import rmtree
from sysconfig import get_python_version
+
from packaging.util import get_platform
from packaging.command.cmd import Command
from packaging.errors import PackagingPlatformError
@@ -24,7 +24,7 @@ class bdist_dumb(Command):
"platform name to embed in generated filenames "
"(default: %s)" % get_platform()),
('format=', 'f',
- "archive format to create (tar, gztar, zip)"),
+ "archive format to create (tar, gztar, bztar, zip)"),
('keep-temp', 'k',
"keep the pseudo-installation tree around after " +
"creating the distribution archive"),