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 | 3d3bc8121915968ee8e445299800914b5a46da3a (patch) | |
tree | 9e1102ac3a7d85f7a2327990dfeda1bef46d562a /Lib | |
parent | 8c973189b59ffd49ec5204e0afc3afed4654c7c8 (diff) | |
download | cpython-3d3bc8121915968ee8e445299800914b5a46da3a.zip cpython-3d3bc8121915968ee8e445299800914b5a46da3a.tar.gz cpython-3d3bc8121915968ee8e445299800914b5a46da3a.tar.bz2 |
Issue #12678: Fix distutils sdist test on Windows.
Patch by Jeremy Kloth.
Diffstat (limited to 'Lib')
-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'), |