diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-20 19:52:07 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-20 19:52:07 +0200 |
commit | 19ffe600e9956703e34a3e4ab1b7399ddf63609d (patch) | |
tree | dfe5859c233bd524a2429d2aa6d6c8e4ff7900db | |
parent | 0a733627f968e7a886fea64cb3c5bddc32eb55ea (diff) | |
download | cpython-git-19ffe600e9956703e34a3e4ab1b7399ddf63609d.tar.gz |
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 440af9886c..f34f786c92 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'), |