summaryrefslogtreecommitdiff
path: root/tests/test_archive_util.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_archive_util.py')
-rw-r--r--tests/test_archive_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_archive_util.py b/tests/test_archive_util.py
index 02fa1e27..14ba4ca3 100644
--- a/tests/test_archive_util.py
+++ b/tests/test_archive_util.py
@@ -162,7 +162,7 @@ class ArchiveUtilTestCase(support.TempdirManager,
# now create another tarball using `tar`
tarball2 = os.path.join(tmpdir, 'archive2.tar.gz')
tar_cmd = ['tar', '-cf', 'archive2.tar', 'dist']
- gzip_cmd = ['gzip', '-f9', 'archive2.tar']
+ gzip_cmd = ['gzip', '-f', '-9', 'archive2.tar']
old_dir = os.getcwd()
os.chdir(tmpdir)
try: