]> granicus.if.org Git - python/commitdiff
Fixed 'make_archive()' to explicitly turn of compression when format is "tar".
authorGreg Ward <gward@python.net>
Fri, 31 Mar 2000 05:20:27 +0000 (05:20 +0000)
committerGreg Ward <gward@python.net>
Fri, 31 Mar 2000 05:20:27 +0000 (05:20 +0000)
Lib/distutils/util.py

index 63b6bec05a626a6c39580abde8f276e266a2b716..22fc437547a764dbef67e59dd90b397e8b92f0f7 100644 (file)
@@ -746,6 +746,7 @@ def make_archive (base_name, format,
         kwargs['compress'] = 'compress'
     elif format == 'tar':
         func = make_tarball
+        kwargs['compress'] = None
     elif format == 'zip':
         func = make_zipfile