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.
import logging
import urlparse
from six.moves.urllib import parse as urlparse
from keystoneclient import exceptions
from keystoneclient import httpclient

View File

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

View File

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

View File

@@ -12,10 +12,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import urlparse
import uuid
import httpretty
from six.moves.urllib import parse as urlparse
from keystoneclient.openstack.common import jsonutils
from keystoneclient.tests import utils