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

This commit is contained in:
Jenkins 2014-02-15 07:31:24 +00:00 committed by Gerrit Code Review
commit 45888d707b
8 changed files with 8 additions and 8 deletions

View File

@ -19,7 +19,7 @@
import eventlet import eventlet
import requests import requests
import urlparse import six.moves.urllib.parse as urlparse
from oslo.config import cfg from oslo.config import cfg

View File

@ -19,7 +19,7 @@
""" """
from __future__ import absolute_import from __future__ import absolute_import
import urlparse import six.moves.urllib.parse as urlparse
from keystoneclient import exceptions from keystoneclient import exceptions
from oslo.config import cfg from oslo.config import cfg

View File

@ -18,7 +18,7 @@
import logging import logging
import logging.handlers import logging.handlers
import urlparse import six.moves.urllib.parse as urlparse
from ceilometer.openstack.common.gettextutils import _ # noqa from ceilometer.openstack.common.gettextutils import _ # noqa
from ceilometer.openstack.common import log from ceilometer.openstack.common import log

View File

@ -21,7 +21,7 @@
import itertools import itertools
import operator import operator
import urlparse import six.moves.urllib.parse as urlparse
from oslo.config import cfg from oslo.config import cfg

View File

@ -18,7 +18,7 @@
"""Storage backend management """Storage backend management
""" """
import urlparse import six.moves.urllib.parse as urlparse
from oslo.config import cfg from oslo.config import cfg
import six import six

View File

@ -25,7 +25,7 @@ import itertools
import json import json
import os import os
import re import re
import urlparse import six.moves.urllib.parse as urlparse
import happybase import happybase

View File

@ -19,7 +19,7 @@ SQLAlchemy models for Ceilometer data.
""" """
import json import json
import urlparse import six.moves.urllib.parse as urlparse
from oslo.config import cfg from oslo.config import cfg
from sqlalchemy import Column, Integer, String, Table, ForeignKey, \ from sqlalchemy import Column, Integer, String, Table, ForeignKey, \

View File

@ -15,7 +15,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import urlparse import six.moves.urllib.parse as urlparse
import mock import mock
import requests import requests