Change in vdsm[master]: storage: Organize imports in storage.imagetickets

nsoffer at redhat.com nsoffer at redhat.com
Fri Mar 25 22:19:54 UTC 2016


Nir Soffer has uploaded a new change for review.

Change subject: storage: Organize imports in storage.imagetickets
......................................................................

storage: Organize imports in storage.imagetickets

3rd party libraries such as ovirt_image_daemon should appear before vdsm
library modules.

Change-Id: I91bc1c76ba3c6bd6ad79c7b4b751df7024c6f29b
Signed-off-by: Nir Soffer <nsoffer at redhat.com>
---
M vdsm/storage/imagetickets.py
1 file changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/58/55258/1

diff --git a/vdsm/storage/imagetickets.py b/vdsm/storage/imagetickets.py
index 085d8c0..6301b27 100644
--- a/vdsm/storage/imagetickets.py
+++ b/vdsm/storage/imagetickets.py
@@ -26,14 +26,14 @@
 
 from contextlib import closing
 
-from vdsm import constants
-from vdsm.storage import exception as se
-
 try:
     from ovirt_image_daemon import uhttp
 except ImportError:
     uhttp = None
 
+from vdsm import constants
+from vdsm.storage import exception as se
+
 DAEMON_SOCK = os.path.join(constants.P_VDSM_RUN, "ovirt-image-daemon.sock")
 
 log = logging.getLogger('storage.imagetickets')


-- 
To view, visit https://gerrit.ovirt.org/55258
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I91bc1c76ba3c6bd6ad79c7b4b751df7024c6f29b
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Nir Soffer <nsoffer at redhat.com>


More information about the vdsm-patches mailing list