File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 33# This software is licensed under the BSD 3-Clause License.
44from __future__ import print_function
55import sys
6- from urllib .parse import urlencode
76
87from ..core import json
98from ..common import six
9+ from ..common .six .moves .urllib .parse import urlencode
1010if six .PY2 :
1111 from collections import Mapping , Iterable
1212else :
Original file line number Diff line number Diff line change 1414from contextlib import contextmanager
1515from itertools import groupby
1616from multiprocessing .pool import ThreadPool
17- from urllib .parse import urlparse
1817
1918from .. import syncutil
2019from ..core import json
3736from .filterparse import parse_filter
3837from .filterparse import urlencode_filter
3938from .filterparse import _parse_filter_query
39+ from six .moves .urllib .parse import urlparse
4040if six .PY2 :
4141 from collections import Mapping , Iterable
4242else :
Original file line number Diff line number Diff line change 33# This software is licensed under the BSD 3-Clause License.
44import os
55import re
6- from urllib .parse import urlparse , urlunparse
76
87from .contrib .project import Project
8+ from .common .six .moves .urllib .parse import urlparse , urlunparse
99
1010
1111_PATH_SCHEMA = r'(?P<root>.*?)(\/api\/v(?P<api_version>\d+)(?P<path>.*))'
You can’t perform that action at this time.
0 commit comments