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
1 changed files with 1 additions and 0 deletions

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