summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Riedemann <mriedem@us.ibm.com>2015-09-04 12:31:55 -0700
committerFlavio Percoco <fpercoco@redhat.com>2015-09-04 21:21:17 +0000
commitc816b38d9f12be75d989409cbab6dfefa8f49dc3 (patch)
tree3a046283d2e71bf8e1b2f027f6c6ab8ed67d9638
parentb7d7b8ae5ecddb1f47ec6da03501a5ad2f936f1e (diff)
downloadglance_store-c816b38d9f12be75d989409cbab6dfefa8f49dc3.tar.gz
rbd: re-add the absolute_import and with_statement imports0.9.1
It's unclear why these were removed in 3f5a37cb6e but the ceph job is failing on the latest 0.80.10 librados package in ubuntu trusty in the gate so add them back to see if that resolves things. Closes-Bug: #1492432 Depends-On: I31ba6473fc2be9e45783c71728f2529ca26b2691 Change-Id: Iafd6c8912ced45f620c84dcfd61a0ef73377cbde
-rw-r--r--glance_store/_drivers/rbd.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/glance_store/_drivers/rbd.py b/glance_store/_drivers/rbd.py
index e5345c3..e8dac21 100644
--- a/glance_store/_drivers/rbd.py
+++ b/glance_store/_drivers/rbd.py
@@ -15,6 +15,9 @@
"""Storage backend for RBD
(RADOS (Reliable Autonomic Distributed Object Store) Block Device)"""
+from __future__ import absolute_import
+from __future__ import with_statement
+
import contextlib
import hashlib
import logging