diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2014-03-04 14:28:47 +0100 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2014-03-04 14:28:47 +0100 |
commit | 11f4bbc2d46628ff5b3890b037928fec93802f3c (patch) | |
tree | ab0667208261c7691bfd7735ba67a476415cc1cd /setuptools/command/easy_install.py | |
parent | 3ca95bfdfe8b4e68338f43de462e6b57e3fdf1a0 (diff) | |
download | external_python_setuptools-11f4bbc2d46628ff5b3890b037928fec93802f3c.tar.gz external_python_setuptools-11f4bbc2d46628ff5b3890b037928fec93802f3c.tar.bz2 external_python_setuptools-11f4bbc2d46628ff5b3890b037928fec93802f3c.zip |
Issue #156: Fix spelling of __PYVENV_LAUNCHER__ variable.3.0
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 8e39ee80..4f497c3b 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -53,7 +53,7 @@ from pkg_resources import ( VersionConflict, DEVELOP_DIST, ) -sys_executable = os.environ.get('__VENV_LAUNCHER__', +sys_executable = os.environ.get('__PYVENV_LAUNCHER__', os.path.normpath(sys.executable)) __all__ = [ |