diff options
author | Greg Ward <gward@python.net> | 2000-06-24 00:23:20 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-06-24 00:23:20 (GMT) |
commit | 2ff7887270385bd6dddc2d5461486334b4fec8bc (patch) | |
tree | 35c3f4814ec717a72c03a70d24bad2cccf1ac3aa /Lib/distutils/archive_util.py | |
parent | ffcaf2dd72ef0735d0eea125f1789d48c575f9b5 (diff) | |
download | cpython-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/archive_util.py')
-rw-r--r-- | Lib/distutils/archive_util.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py index 27aa8c0..08a3c83 100644 --- a/Lib/distutils/archive_util.py +++ b/Lib/distutils/archive_util.py @@ -110,10 +110,10 @@ def make_zipfile (base_name, base_dir, verbose=0, dry_run=0): ARCHIVE_FORMATS = { - 'gztar': (make_tarball, [('compress', 'gzip')],"gzipped tar-file"), - 'bztar': (make_tarball, [('compress', 'bzip2')],"bzip2-ed tar-file"), - 'ztar': (make_tarball, [('compress', 'compress')],"compressed tar-file"), - 'tar': (make_tarball, [('compress', None)],"uncompressed tar-file"), + 'gztar': (make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"), + 'bztar': (make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"), + 'ztar': (make_tarball, [('compress', 'compress')], "compressed tar file"), + 'tar': (make_tarball, [('compress', None)], "uncompressed tar file"), 'zip': (make_zipfile, [],"zip-file") } |