summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-03-23 19:08:46 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-03-23 19:08:46 -0400
commite4f3866060e153bc8a6f3655867b6abd2e477bd3 (patch)
tree369ee26f99a07309f3eaaa526b02670d8264d236 /tests
parenta192b02de137729a58dc591e19e425041a9c8564 (diff)
downloadpython-setuptools-bitbucket-e4f3866060e153bc8a6f3655867b6abd2e477bd3.tar.gz
Fix build of setuptools on Windows (do not create empty tag)
Diffstat (limited to 'tests')
-rw-r--r--tests/test_ez_setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ez_setup.py b/tests/test_ez_setup.py
index 26881f52..1825fb34 100644
--- a/tests/test_ez_setup.py
+++ b/tests/test_ez_setup.py
@@ -23,7 +23,7 @@ class TestSetup(unittest.TestCase):
self.cwd = os.getcwd()
self.tmpdir = tempfile.mkdtemp()
os.chdir(TOPDIR)
- _python_cmd("setup.py", "-q", "egg_info", "-RDb", "''", "sdist",
+ _python_cmd("setup.py", "-q", "egg_info", "-RDb", "", "sdist",
"--dist-dir", "%s" % self.tmpdir)
tarball = os.listdir(self.tmpdir)[0]
self.tarball = os.path.join(self.tmpdir, tarball)