Browse Source

six.moves.urllib.parse

pull/384/head
Ross McFarland 6 years ago
parent
commit
742305c20b
No known key found for this signature in database GPG Key ID: 61C10C4FC8FE4A89
2 changed files with 2 additions and 5 deletions
  1. +1
    -1
      octodns/provider/fastdns.py
  2. +1
    -4
      tests/test_octodns_provider_rackspace.py

+ 1
- 1
octodns/provider/fastdns.py 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
tests/test_octodns_provider_rackspace.py 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


Loading…
Cancel
Save