diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-01-16 06:54:00 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-01-16 06:54:00 -0500 |
commit | 8af3b6ef5b4173a0d0d6735147c98c882ae98344 (patch) | |
tree | 18ccd57b03f7e00967f59a72d9ccd13172825b55 /setuptools/ssl_support.py | |
parent | 0f590c0d72709128f32c23437fe0183386c69d1c (diff) | |
download | external_python_setuptools-8af3b6ef5b4173a0d0d6735147c98c882ae98344.tar.gz external_python_setuptools-8af3b6ef5b4173a0d0d6735147c98c882ae98344.tar.bz2 external_python_setuptools-8af3b6ef5b4173a0d0d6735147c98c882ae98344.zip |
Always use Python 3 version of map
Diffstat (limited to 'setuptools/ssl_support.py')
-rw-r--r-- | setuptools/ssl_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/ssl_support.py b/setuptools/ssl_support.py index 7baedd19..511d2fa8 100644 --- a/setuptools/ssl_support.py +++ b/setuptools/ssl_support.py @@ -3,7 +3,7 @@ import socket import atexit import re -from setuptools.extern.six.moves import urllib, http_client +from setuptools.extern.six.moves import urllib, http_client, map import pkg_resources from pkg_resources import ResolutionError, ExtractionError |