summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTin Lam <tl3438@att.com>2016-02-17 00:27:37 -0600
committerTin Lam <tl3438@att.com>2016-02-17 00:27:37 -0600
commit84fc9dc40d8a77fdc52dbf38bc24e8f66c4c958d (patch)
tree4efea8c851bd4d2b4430ecd322e9b2db69613869
parent663bb3d41007dc3c44471835244bd3305795ef61 (diff)
downloadpython-barbicanclient-84fc9dc40d8a77fdc52dbf38bc24e8f66c4c958d.tar.gz
Use six.moves.urllib.parse to replace urlparse
Import six.moves.urllib.parse as urlparse for python3 compatible. Change-Id: I0f28f01a54daaa690cd890540fd4edc3b32411d1 Closes-Bug: #1279611
-rw-r--r--functionaltests/utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/functionaltests/utils.py b/functionaltests/utils.py
index c57ff72..34a4251 100644
--- a/functionaltests/utils.py
+++ b/functionaltests/utils.py
@@ -17,11 +17,10 @@ import functools
from os import path
import time
import types
-import urlparse
import oslotest.base as oslotest
import six
-
+import six.moves.urllib.parse as urlparse
class BaseTestCase(oslotest.BaseTestCase):
def setUp(self):