1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

six.moves.urllib.parse

This commit is contained in:
Ross McFarland
2019-10-05 08:47:12 -07:00
parent 470dd82202
commit 742305c20b
2 changed files with 2 additions and 5 deletions

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