diff options
author | SVN-Git Migration <python-modules-team@lists.alioth.debian.org> | 2015-10-08 13:19:52 -0700 |
---|---|---|
committer | SVN-Git Migration <python-modules-team@lists.alioth.debian.org> | 2015-10-08 13:19:52 -0700 |
commit | c81f55d5ea254affbb6d8e87d03098d244ffe468 (patch) | |
tree | 80ac480f9e113bc246f8b43edf702caba1b141e3 /urllib3/util/response.py | |
parent | e233bfa0d673601895c3dccb91dba9f6adff8ef1 (diff) | |
parent | 6037bb76fda33e09811e44f56bf3dcc73daeebc4 (diff) | |
download | python-urllib3-c81f55d5ea254affbb6d8e87d03098d244ffe468.tar python-urllib3-c81f55d5ea254affbb6d8e87d03098d244ffe468.tar.gz |
Initialize git-dpm
Diffstat (limited to 'urllib3/util/response.py')
-rw-r--r-- | urllib3/util/response.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/urllib3/util/response.py b/urllib3/util/response.py index 767ee15..6695809 100644 --- a/urllib3/util/response.py +++ b/urllib3/util/response.py @@ -1,7 +1,4 @@ -try: - import http.client as httplib -except ImportError: - import httplib +from six.moves import http_client as httplib from ..exceptions import HeaderParsingError |