replace urllib2 with urllib.request for python3
[doctor.git] / tests / image.py
index 5226c78..453322b 100644 (file)
@@ -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,