diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-08-21 20:35:41 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-08-21 20:35:41 (GMT) |
commit | ce9da2ffa6fefe772f1a4209f01ef12e7d5d8cc5 (patch) | |
tree | 2df5c4bb78b5cc56f5c1a680fded89221c9c06e8 /Lib/distutils | |
parent | a031abc166e2426a90d838a8106abe3148965404 (diff) | |
download | cpython-ce9da2ffa6fefe772f1a4209f01ef12e7d5d8cc5.zip cpython-ce9da2ffa6fefe772f1a4209f01ef12e7d5d8cc5.tar.gz cpython-ce9da2ffa6fefe772f1a4209f01ef12e7d5d8cc5.tar.bz2 |
Issue #12678: Fix distutils sdist test on Windows.
Patch by Jeremy Kloth.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/tests/test_sdist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/tests/test_sdist.py b/Lib/distutils/tests/test_sdist.py index 440af98..f34f786 100644 --- a/Lib/distutils/tests/test_sdist.py +++ b/Lib/distutils/tests/test_sdist.py @@ -365,6 +365,7 @@ class SDistTestCase(PyPIRCCommandTestCase): def test_manual_manifest(self): # check that a MANIFEST without a marker is left alone dist, cmd = self.get_cmd() + cmd.formats = ['gztar'] cmd.ensure_finalized() self.write_file((self.tmp_dir, cmd.manifest), 'README.manual') self.write_file((self.tmp_dir, 'README.manual'), |