diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-09 22:12:06 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-09 22:12:06 -0400 |
commit | f3f0c144dcfec41924e2e3eac3cbbaa81cb53819 (patch) | |
tree | 1fcc71b8f6e9fd4c16ae08ebfd9958cd412c46a7 /setuptools/tests/test_easy_install.py | |
parent | c5779cbe9f0e1b77ad650c2ce19e4358ddce7226 (diff) | |
download | external_python_setuptools-f3f0c144dcfec41924e2e3eac3cbbaa81cb53819.tar.gz external_python_setuptools-f3f0c144dcfec41924e2e3eac3cbbaa81cb53819.tar.bz2 external_python_setuptools-f3f0c144dcfec41924e2e3eac3cbbaa81cb53819.zip |
Fixed script header generation in easy_install tests. Fixes #37.
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r-- | setuptools/tests/test_easy_install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 2732bb3e..189e3d55 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -14,7 +14,7 @@ import distutils.core from setuptools.compat import StringIO, BytesIO, next, urlparse from setuptools.sandbox import run_setup, SandboxViolation -from setuptools.command.easy_install import easy_install, fix_jython_executable, get_script_args +from setuptools.command.easy_install import easy_install, fix_jython_executable, get_script_args, nt_quote_arg from setuptools.command.easy_install import PthDistributions from setuptools.command import easy_install as easy_install_pkg from setuptools.dist import Distribution @@ -52,7 +52,7 @@ if __name__ == '__main__': sys.exit( load_entry_point('spec', 'console_scripts', 'name')() ) -""" % fix_jython_executable(sys.executable, "") +""" % nt_quote_arg(fix_jython_executable(sys.executable, "")) SETUP_PY = """\ from setuptools import setup |