X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2Fimage.py;h=453322b87f0a1787fbf81d466349406cc1b64da7;hb=1bc6eb0e8f1ed1e20edcdd7362c23c8948ed3d77;hp=5226c789917674a632f566bc5e2fefbbabcb8f5c;hpb=9ae13f88c29d7babea19fb65bef208e631a12be4;p=doctor.git 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,