summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2014-03-04 14:28:47 +0100
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2014-03-04 14:28:47 +0100
commit543899990199c96352b4291420c2738a3f473a5c (patch)
tree373601e61be54b18c9b73c3d614e0d0313120102
parenta77e6a3dfbd341c1fd097559641d19d3abb926eb (diff)
downloadpython-setuptools-bitbucket-3.0.tar.gz
Issue #156: Fix spelling of __PYVENV_LAUNCHER__ variable.3.0
-rw-r--r--CHANGES.txt1
-rwxr-xr-xsetuptools/command/easy_install.py2
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__ = [