diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-11-16 09:40:21 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-11-16 09:40:21 -0500 |
| commit | 4d4dbd3c5c69f63418ca2f22e9d6a3b8185b2e00 (patch) | |
| tree | 01f6619f3630594bb677a10e4406fd822e9f6c26 /setuptools/command | |
| parent | c5fa038292a9c7d6fe529c4d8001cec0d3bac9cf (diff) | |
| parent | 2c33dad04fd11ebd7fc8e15d0017ff2dc617e6a3 (diff) | |
| download | external_python_setuptools-4d4dbd3c5c69f63418ca2f22e9d6a3b8185b2e00.tar.gz external_python_setuptools-4d4dbd3c5c69f63418ca2f22e9d6a3b8185b2e00.tar.bz2 external_python_setuptools-4d4dbd3c5c69f63418ca2f22e9d6a3b8185b2e00.zip | |
Merge with master
--HG--
branch : feature/issue-229
Diffstat (limited to 'setuptools/command')
| -rwxr-xr-x | setuptools/command/easy_install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 3be6fd9a..5444ba53 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -38,7 +38,7 @@ import struct import six from six.moves import configparser -from setuptools import Command, _dont_write_bytecode +from setuptools import Command from setuptools.sandbox import run_setup from setuptools.py31compat import get_path, get_config_vars from setuptools.command import setopt @@ -1153,7 +1153,7 @@ See the setuptools documentation for the "develop" command for more info. chmod(f, mode) def byte_compile(self, to_compile): - if _dont_write_bytecode: + if sys.dont_write_bytecode: self.warn('byte-compiling is disabled, skipping.') return |
