six.moves.urllib.parse

This commit is contained in:
Ross McFarland
2019-10-05 08:48:57 -07:00
parent 470dd82202
commit 742305c20b
2 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ from __future__ import absolute_import, division, print_function, \
from requests import Session
from akamai.edgegrid import EdgeGridAuth
from urlparse import urljoin
from six.moves.urllib.parse import urljoin
from collections import defaultdict
from logging import getLogger
+1 -4
View File
@@ -8,11 +8,8 @@ from __future__ import absolute_import, division, print_function, \
import json
import re
from six import text_type
from six.moves.urllib.parse import urlparse
from unittest import TestCase
try:
from urlparse import urlparse
except ImportError:
from urllib.parse import urlparse
from requests import HTTPError
from requests_mock import ANY, mock as requests_mock