Commit 23873c73 authored by Greg Ward's avatar Greg Ward

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

parent 39f9a020
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment