aboutsummaryrefslogtreecommitdiff
path: root/dummyserver
diff options
context:
space:
mode:
authorDaniele Tricoli <eriol@mornie.org>2015-10-08 13:19:46 -0700
committerChristopher Baines <mail@cbaines.net>2015-12-22 14:12:58 +0000
commit39fe68dc64cc8b675bb94892935ef2c8b50f583c (patch)
tree8e36836d7fe036a52147051fd3d550a5c9d67713 /dummyserver
parentdff63335f212d32d7c1a4bb5276f2d31f5995ea1 (diff)
downloadpython-urllib3-39fe68dc64cc8b675bb94892935ef2c8b50f583c.tar
python-urllib3-39fe68dc64cc8b675bb94892935ef2c8b50f583c.tar.gz
Do not use embedded copy of python-six.
Forwarded: not-needed Patch-Name: 01_do-not-use-embedded-python-six.patch
Diffstat (limited to 'dummyserver')
-rw-r--r--dummyserver/handlers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dummyserver/handlers.py b/dummyserver/handlers.py
index fb6f44f..c5ac9b4 100644
--- a/dummyserver/handlers.py
+++ b/dummyserver/handlers.py
@@ -264,7 +264,7 @@ def _parse_header(line):
"""
import tornado.httputil
import email.utils
- from urllib3.packages import six
+ import six
if not six.PY3:
line = line.encode('utf-8')
parts = tornado.httputil._parseparam(';' + line)