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 | 543899990199c96352b4291420c2738a3f473a5c (patch) | |
| tree | 373601e61be54b18c9b73c3d614e0d0313120102 /setuptools/command | |
| parent | a77e6a3dfbd341c1fd097559641d19d3abb926eb (diff) | |
| download | python-setuptools-bitbucket-543899990199c96352b4291420c2738a3f473a5c.tar.gz | |
Issue #156: Fix spelling of __PYVENV_LAUNCHER__ variable.3.0
Diffstat (limited to 'setuptools/command')
| -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__ = [ |
