]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Fix python 3.x import issues with pure.py
authorPatrick East <patrick.east@purestorage.com>
Fri, 18 Dec 2015 21:48:49 +0000 (13:48 -0800)
committerPatrick East <patrick.east@purestorage.com>
Fri, 18 Dec 2015 21:48:49 +0000 (13:48 -0800)
The older import was not compatible with python 3.x, only 2.x. A simple
fix is to adjust how we are importing the module.

Change-Id: Ic1d69c676af1adde9bd305431338c16a058fccf6
Closes-Bug: 1527755

cinder/volume/drivers/pure.py

index 66c6c8214f7d34a39ce9a7b0ee8e931be30a9967..6dd4fbe18bcf4f460a5e32c980d38e21d4c29585 100644 (file)
@@ -38,7 +38,7 @@ from cinder.volume import utils as volume_utils
 from cinder.zonemanager import utils as fczm_utils
 
 try:
-    import purestorage
+    from purestorage import purestorage
 except ImportError:
     purestorage = None