summaryrefslogtreecommitdiff
path: root/urlobject/query_string.py
diff options
context:
space:
mode:
authorAndrej Shadura <andrewsh@debian.org>2019-10-27 22:45:52 +0100
committerAndrej Shadura <andrewsh@debian.org>2019-10-27 22:45:52 +0100
commit9dd421ddd0978a7b4496457d4f8c08afe8fd2c99 (patch)
tree6812b1154533881b1c2cdfc7982a6b106fdfaa5a /urlobject/query_string.py
parent8b0ee771440c5e38673ac91ebb314ccce0160a61 (diff)
Use system-provided six.
Gbp-Pq: Name 01-use-system-six.diff
Diffstat (limited to 'urlobject/query_string.py')
-rw-r--r--urlobject/query_string.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urlobject/query_string.py b/urlobject/query_string.py
index 7ab0b3a..33a87f7 100644
--- a/urlobject/query_string.py
+++ b/urlobject/query_string.py
@@ -3,7 +3,7 @@ import re
import urllib
from .compat import urlparse
-from .six import PY2, text_type, string_types, u
+from six import PY2, text_type, string_types, u
class QueryString(text_type):