diff options
author | Daniele Tricoli <eriol@mornie.org> | 2015-10-08 13:19:46 -0700 |
---|---|---|
committer | SVN-Git Migration <python-modules-team@lists.alioth.debian.org> | 2015-10-08 13:19:46 -0700 |
commit | e720aa3dea81bf5c30d9a897f9cbae18bf6a4228 (patch) | |
tree | 36e781b19665082d50c5e84104010a0cfc685a1d /urllib3/util | |
parent | e6838673bda9af1e9bf7c4f71b25cf3e3dfc1253 (diff) | |
download | python-urllib3-e720aa3dea81bf5c30d9a897f9cbae18bf6a4228.tar python-urllib3-e720aa3dea81bf5c30d9a897f9cbae18bf6a4228.tar.gz |
Do not use embedded copy of python-six.
Forwarded: not-needed
Last-Update: 2015-05-03
Patch-Name: 01_do-not-use-embedded-python-six.patch
Diffstat (limited to 'urllib3/util')
-rw-r--r-- | urllib3/util/request.py | 2 | ||||
-rw-r--r-- | urllib3/util/retry.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/urllib3/util/request.py b/urllib3/util/request.py index bc64f6b..5f4ccfd 100644 --- a/urllib3/util/request.py +++ b/urllib3/util/request.py @@ -1,6 +1,6 @@ from base64 import b64encode -from ..packages.six import b +from six import b ACCEPT_ENCODING = 'gzip,deflate' diff --git a/urllib3/util/retry.py b/urllib3/util/retry.py index 1fb1f23..178b374 100644 --- a/urllib3/util/retry.py +++ b/urllib3/util/retry.py @@ -8,7 +8,7 @@ from ..exceptions import ( ReadTimeoutError, ResponseError, ) -from ..packages import six +import six log = logging.getLogger(__name__) |