Merge "Fix python3 incompatible use of urlparse"

This commit is contained in:
Jenkins
2013-11-22 19:18:47 +00:00
committed by Gerrit Code Review
4 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@
# under the License. # under the License.
import logging import logging
import urlparse from six.moves.urllib import parse as urlparse
from keystoneclient import exceptions from keystoneclient import exceptions
from keystoneclient import httpclient from keystoneclient import httpclient

View File

@@ -23,7 +23,7 @@ OpenStack Client interface. Handles the REST calls and responses.
import copy import copy
import logging import logging
import urlparse from six.moves.urllib import parse as urlparse
import requests import requests
import six import six

View File

@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
import urlparse from six.moves.urllib import parse as urlparse
from keystoneclient.tests import fakes from keystoneclient.tests import fakes
from keystoneclient.tests.v2_0 import utils from keystoneclient.tests.v2_0 import utils

View File

@@ -12,10 +12,10 @@
# 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 uuid import uuid
import httpretty import httpretty
from six.moves.urllib import parse as urlparse
from keystoneclient.openstack.common import jsonutils from keystoneclient.openstack.common import jsonutils
from keystoneclient.tests import utils from keystoneclient.tests import utils