0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 08:20:55 +01:00

Fixed 'make_archive()' to explicitly turn of compression when format is "tar".

This commit is contained in:
Greg Ward 2000-03-31 05:20:27 +00:00
parent 02296cea39
commit 1889de8889

View 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