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 | |
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
-rw-r--r-- | CHANGES.txt | 1 | ||||
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 8fb29c4e..572280b7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -28,6 +28,7 @@ CHANGES * Pull Request #28: Remove backport of ``_bytecode_filenames`` which is available in Python 2.6 and later, but also has better compatibility with Python 3 environments. +* Issue #156: Fix spelling of __PYVENV_LAUNCHER__ variable. --- 2.2 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__ = [ |