diff options
Diffstat (limited to 'urllib3/response.py')
-rw-r--r-- | urllib3/response.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urllib3/response.py b/urllib3/response.py index 8f2a1b5..e034068 100644 --- a/urllib3/response.py +++ b/urllib3/response.py @@ -9,8 +9,8 @@ from ._collections import HTTPHeaderDict from .exceptions import ( ProtocolError, DecodeError, ReadTimeoutError, ResponseNotChunked ) -from .packages.six import string_types as basestring, binary_type, PY3 -from .packages.six.moves import http_client as httplib +from six import string_types as basestring, binary_type, PY3 +from six.moves import http_client as httplib from .connection import HTTPException, BaseSSLError from .util.response import is_fp_closed, is_response_to_head |