Py3: Use urlopen from six.moves.urllib.request
Namespaces within the urllib2 package have
changed between python2x and python3x.
Closes-bug: #1810610
Change-Id: I2a044ba76970393c587d6bc8d07280a7727bbe21
diff --git a/manila_tempest_tests/tests/scenario/manager_share.py b/manila_tempest_tests/tests/scenario/manager_share.py
index a80400e..17f4f0e 100644
--- a/manila_tempest_tests/tests/scenario/manager_share.py
+++ b/manila_tempest_tests/tests/scenario/manager_share.py
@@ -15,6 +15,7 @@
from oslo_log import log
import six
+from six.moves.urllib.request import urlopen
from manila_tempest_tests.common import constants
from manila_tempest_tests.common import remote_client
@@ -28,7 +29,6 @@
from tempest.lib import exceptions
from tempfile import mkstemp
-from urllib2 import urlopen
CONF = config.CONF
LOG = log.getLogger(__name__)