aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:19:52 -0700
committerDaniele Tricoli <eriol@mornie.org>2015-10-09 23:18:42 +0200
commit7db0aa9b18e70f43ef0bfcdec7f223e5b681aaf0 (patch)
treee6d2ded81fbec16c2149f7426268425be6260e13
parent797a60975f0ff4dcf615fca6f8b51ce62e5e91a6 (diff)
downloadpython-urllib3-7db0aa9b18e70f43ef0bfcdec7f223e5b681aaf0.tar
python-urllib3-7db0aa9b18e70f43ef0bfcdec7f223e5b681aaf0.tar.gz
Rely on six to import httplib or http.client.
Origin: https://github.com/shazow/urllib3/commit/f4eb94bc36277d5d584683a03fc9eb3950429a15 Patch-Name: 06_rely-on-six-to-import-httplib-or-http.client.patch
-rw-r--r--urllib3/util/response.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urllib3/util/response.py b/urllib3/util/response.py
index 2c1de15..6695809 100644
--- a/urllib3/util/response.py
+++ b/urllib3/util/response.py
@@ -1,4 +1,4 @@
-from ..packages.six.moves import http_client as httplib
+from six.moves import http_client as httplib
from ..exceptions import HeaderParsingError