aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-13 15:46:58 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-13 15:46:58 -0500
commit1b5e1d478005b8d9d2838252e73f4c1f1e8b34da (patch)
tree6fa0b790b6752dc286c8da8091cd279fd62d6eec
parente0bd38e357b89880dde1340a4089aacc1af4a89b (diff)
downloadexternal_python_setuptools-1b5e1d478005b8d9d2838252e73f4c1f1e8b34da.tar.gz
external_python_setuptools-1b5e1d478005b8d9d2838252e73f4c1f1e8b34da.tar.bz2
external_python_setuptools-1b5e1d478005b8d9d2838252e73f4c1f1e8b34da.zip
Use os.pathsep. Fixes failure on Windows8.1b1
-rw-r--r--setuptools/tests/test_egg_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py
index 9f813560..e8068420 100644
--- a/setuptools/tests/test_egg_info.py
+++ b/setuptools/tests/test_egg_info.py
@@ -118,7 +118,7 @@ class TestEggInfo(unittest.TestCase):
'--install-lib', paths['lib'],
'--install-scripts', paths['scripts'],
'--install-data', paths['data']],
- pypath=':'.join([paths['lib'], self.old_cwd]),
+ pypath=os.pathsep.join([paths['lib'], self.old_cwd]),
data_stream=1,
env=environ)
if code: