Commit 6d4a70d6 authored by Jason R. Coombs's avatar Jason R. Coombs

Fix build of setuptools on Windows (do not create empty tag)

parent d83a2165
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment