diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2017-06-01 08:52:31 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-01 08:52:31 -0400 |
| commit | fa38086b6e4ccc2914a70cc635c0351a96c64647 (patch) | |
| tree | 4596dd94136dca5131ec2b524e6512dc03a8a28f | |
| parent | 09902adaf5a3a279e991a23a8c25cdedea15a7e5 (diff) | |
| parent | 1cebea7e885c357d8f64a021bec4316b7993c50c (diff) | |
| download | external_python_setuptools-fa38086b6e4ccc2914a70cc635c0351a96c64647.tar.gz external_python_setuptools-fa38086b6e4ccc2914a70cc635c0351a96c64647.tar.bz2 external_python_setuptools-fa38086b6e4ccc2914a70cc635c0351a96c64647.zip | |
Merge pull request #1043 from alex/patch-1
fixed #1042 -- updates an import to use six from the vendored package
| -rw-r--r-- | setuptools/py27compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/py27compat.py b/setuptools/py27compat.py index 701283c8..2985011b 100644 --- a/setuptools/py27compat.py +++ b/setuptools/py27compat.py @@ -4,7 +4,7 @@ Compatibility Support for Python 2.7 and earlier import platform -import six +from setuptools.extern import six def get_all_headers(message, key): |
