Mike Kolesnik has uploaded a new change for review. Change subject: Don't depend on storage module ......................................................................
Don't depend on storage module There is no real need for hooking module to depend on the storage module, except for the execCmd which is being delegated to utils.execCmd, so importing the execCmd directly from utils instead. Change-Id: Ib36940cda2a07e2898e26e6e7de4d4f3b1292e8f Signed-off-by: Mike Kolesnik <[email protected]> --- M vdsm/hooking.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/03/16003/1 diff --git a/vdsm/hooking.py b/vdsm/hooking.py index 02acd2e..d96cae5 100644 --- a/vdsm/hooking.py +++ b/vdsm/hooking.py @@ -39,7 +39,7 @@ import os from xml.dom import minidom -from storage.misc import execCmd +from vdsm.utils import execCmd from vdsm.utils import tobool # make pyflakes happy -- To view, visit http://gerrit.ovirt.org/16003 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ib36940cda2a07e2898e26e6e7de4d4f3b1292e8f Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Mike Kolesnik <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
