aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Tricoli <eriol@mornie.org>2014-08-31 23:22:11 +0000
committerDaniele Tricoli <eriol@mornie.org>2014-08-31 23:22:11 +0000
commitb9e530268e3856d9bf310958eda83ee894f34532 (patch)
tree0b7a7cd362b2c7d4f6495b584f34ddef64a35df9
parente2a0148455ca86805c5ed1fe17dc777a04dec9fb (diff)
downloadpython-urllib3-b9e530268e3856d9bf310958eda83ee894f34532.tar
python-urllib3-b9e530268e3856d9bf310958eda83ee894f34532.tar.gz
Fix a forgotten six import
-rw-r--r--debian/patches/01_do-not-use-embedded-python-six.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/patches/01_do-not-use-embedded-python-six.patch b/debian/patches/01_do-not-use-embedded-python-six.patch
index 6a6f7f9..40fa594 100644
--- a/debian/patches/01_do-not-use-embedded-python-six.patch
+++ b/debian/patches/01_do-not-use-embedded-python-six.patch
@@ -125,3 +125,14 @@ Last-Update: 2014-09-01
ACCEPT_ENCODING = 'gzip,deflate'
+--- a/urllib3/util/retry.py
++++ b/urllib3/util/retry.py
+@@ -7,7 +7,7 @@
+ ReadTimeoutError,
+ MaxRetryError,
+ )
+-from ..packages import six
++import six
+
+
+ log = logging.getLogger(__name__)