diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-20 17:52:07 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-20 17:52:07 (GMT) |
commit | 19ffe600e9956703e34a3e4ab1b7399ddf63609d (patch) | |
tree | dfe5859c233bd524a2429d2aa6d6c8e4ff7900db | |
parent | 0a733627f968e7a886fea64cb3c5bddc32eb55ea (diff) | |
download | cpython-19ffe600e9956703e34a3e4ab1b7399ddf63609d.zip cpython-19ffe600e9956703e34a3e4ab1b7399ddf63609d.tar.gz cpython-19ffe600e9956703e34a3e4ab1b7399ddf63609d.tar.bz2 |
Fix sdist test on Windows (#12678). Patch by Jeremy Kloth.
-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'), |