diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-23 19:08:46 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-23 19:08:46 -0400 |
| commit | 6d4a70d613d5d03723ad55d2835f9d650b420356 (patch) | |
| tree | 9a0b602952883d0f5032cdef3b6badef01b9d888 | |
| parent | d83a2165548afbeaafc6b9d39a1dd1f6800290bc (diff) | |
| download | python-setuptools-git-6d4a70d613d5d03723ad55d2835f9d650b420356.tar.gz | |
Fix build of setuptools on Windows (do not create empty tag)
| -rw-r--r-- | tests/test_ez_setup.py | 2 |
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) |
