summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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__ = [