diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/image.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/image.py b/tests/image.py index 5226c789..453322b8 100644 --- a/tests/image.py +++ b/tests/image.py @@ -7,7 +7,7 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## import os -import urllib2 +import urllib.request from oslo_config import cfg @@ -50,7 +50,7 @@ class Image(object): images = {image.name: image for image in self.glance.images.list()} if self.conf.image_name not in images: if not os.path.exists(self.conf.image_filename): - resp = urllib2.urlopen(self.conf.image_download_url) + resp = urllib.request.urlopen(self.conf.image_download_url) with open(self.conf.image_filename, "wb") as file: file.write(resp.read()) self.image = self.glance.images.create(name=self.conf.image_name, |