diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-23 04:17:27 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-23 04:17:27 -0400 |
commit | e211f4584ac59f404a3e1a17c6b54dff18468cf6 (patch) | |
tree | 56d4a29528b9077985b42e9e8f868039a1fd19e5 /setuptools/command/easy_install.py | |
parent | 9b058f7a10a4cca6541ef9f02b5a3a2703aacaea (diff) | |
download | external_python_setuptools-e211f4584ac59f404a3e1a17c6b54dff18468cf6.tar.gz external_python_setuptools-e211f4584ac59f404a3e1a17c6b54dff18468cf6.tar.bz2 external_python_setuptools-e211f4584ac59f404a3e1a17c6b54dff18468cf6.zip |
Set sys path technique to raw by default. Fixes #674.
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 19f8286b..0e0dc2c4 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1661,7 +1661,7 @@ class RewritePthDistributions(PthDistributions): """) -if os.environ.get('SETUPTOOLS_SYS_PATH_TECHNIQUE', 'rewrite') == 'rewrite': +if os.environ.get('SETUPTOOLS_SYS_PATH_TECHNIQUE', 'raw') == 'rewrite': PthDistributions = RewritePthDistributions |