diff options
author | SVN-Git Migration <python-modules-team@lists.alioth.debian.org> | 2015-10-08 13:19:52 -0700 |
---|---|---|
committer | Daniele Tricoli <eriol@mornie.org> | 2015-10-09 23:18:42 +0200 |
commit | 7db0aa9b18e70f43ef0bfcdec7f223e5b681aaf0 (patch) | |
tree | e6d2ded81fbec16c2149f7426268425be6260e13 | |
parent | 797a60975f0ff4dcf615fca6f8b51ce62e5e91a6 (diff) | |
download | python-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.py | 2 |
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 |