aboutsummaryrefslogtreecommitdiff
path: root/urllib3/connectionpool.py
diff options
context:
space:
mode:
authorDaniele Tricoli <eriol@mornie.org>2015-10-08 13:19:46 -0700
committerDaniele Tricoli <eriol@mornie.org>2015-10-10 03:11:05 +0200
commit4e097b776bf499a02b262c722487fcd55c2ee379 (patch)
tree3dbe744a7011e78b3cc64ff7ed9b04597791a2ec /urllib3/connectionpool.py
parent2b3d330a120a16e97cecd5163b5d454dcfe38a2b (diff)
downloadpython-urllib3-4e097b776bf499a02b262c722487fcd55c2ee379.tar
python-urllib3-4e097b776bf499a02b262c722487fcd55c2ee379.tar.gz
Do not use embedded copy of python-six.
Forwarded: not-needed Patch-Name: 01_do-not-use-embedded-python-six.patch
Diffstat (limited to 'urllib3/connectionpool.py')
-rw-r--r--urllib3/connectionpool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urllib3/connectionpool.py b/urllib3/connectionpool.py
index b38ac68..563f108 100644
--- a/urllib3/connectionpool.py
+++ b/urllib3/connectionpool.py
@@ -30,7 +30,7 @@ from .exceptions import (
NewConnectionError,
)
from .packages.ssl_match_hostname import CertificateError
-from .packages import six
+import six
from .connection import (
port_by_scheme,
DummyConnection,