Merge "Use six.moves.urllib.parse instead of urlparse"

This commit is contained in:
Jenkins 2014-04-17 22:25:30 +00:00 committed by Gerrit Code Review
commit 7f20bfa08d
4 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@
Records interface. Records interface.
""" """
import urlparse import six.moves.urllib.parse as urlparse
from novaclient import base from novaclient import base
from rsdns.client.future import FutureResource from rsdns.client.future import FutureResource

View File

@ -14,7 +14,7 @@
# under the License. # under the License.
import urllib import urllib
import urlparse import six.moves.urllib.parse as urlparse
def url_quote(s): def url_quote(s):

View File

@ -19,7 +19,7 @@ import inspect
import jinja2 import jinja2
import sys import sys
import time import time
import urlparse import six.moves.urllib.parse as urlparse
import uuid import uuid
import os import os
import shutil import shutil

View File

@ -19,7 +19,7 @@
Network-related utilities and helper functions. Network-related utilities and helper functions.
""" """
import urlparse import six.moves.urllib.parse as urlparse
def parse_host_port(address, default_port=None): def parse_host_port(address, default_port=None):