aboutsummaryrefslogtreecommitdiff
path: root/urllib3/_collections.py
diff options
context:
space:
mode:
authorDaniele Tricoli <eriol@mornie.org>2015-10-08 13:19:46 -0700
committerChristopher Baines <mail@cbaines.net>2015-12-22 14:20:45 +0000
commitef4ec8903f3642a36635cea16ca54a6ed98b5d54 (patch)
treedb85c06577df57e0cfd391eed4f8ccb8357a555e /urllib3/_collections.py
parentdff63335f212d32d7c1a4bb5276f2d31f5995ea1 (diff)
downloadpython-urllib3-ef4ec8903f3642a36635cea16ca54a6ed98b5d54.tar
python-urllib3-ef4ec8903f3642a36635cea16ca54a6ed98b5d54.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/_collections.py')
-rw-r--r--urllib3/_collections.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urllib3/_collections.py b/urllib3/_collections.py
index 67f3ce9..b69ce20 100644
--- a/urllib3/_collections.py
+++ b/urllib3/_collections.py
@@ -15,7 +15,7 @@ try: # Python 2.7+
from collections import OrderedDict
except ImportError:
from .packages.ordered_dict import OrderedDict
-from .packages.six import iterkeys, itervalues, PY3
+from six import iterkeys, itervalues, PY3
__all__ = ['RecentlyUsedContainer', 'HTTPHeaderDict']