Ryan Harper has uploaded a new change for review.

Change subject: Fix check-local build error
......................................................................

Fix check-local build error

Commit a062a1ae5124b6bce0beb73433fe0bf5822e6ebd changed
vm.py removing a call to the caps module, but didn't remove
the module import from source file and now pyflakes complains.

(hungerforce) vdsm % make check-local
find . -path './.git' -prune -type f -o \
        -name '*.py' -o -name '*.py.in'  | xargs /bin/pyflakes
./vdsm/vm.py:36: 'caps' imported but unused
make: *** [check-local] Error 123

This patch just removes the import.

Change-Id: I1db4f921afb471dd0bd335c178f9b518b0d57c74
Signed-off-by: Ryan Harper <[email protected]>
---
M vdsm/vm.py
1 file changed, 0 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/08/8308/1

diff --git a/vdsm/vm.py b/vdsm/vm.py
index c5507e9..77bff41 100644
--- a/vdsm/vm.py
+++ b/vdsm/vm.py
@@ -33,7 +33,6 @@
 from logUtils import SimpleLogAdapter
 import libvirt
 from vdsm import vdscli
-import caps
 
 DEFAULT_BRIDGE = config.get("vars", "default_bridge")
 


--
To view, visit http://gerrit.ovirt.org/8308
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1db4f921afb471dd0bd335c178f9b518b0d57c74
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Ryan Harper <[email protected]>
_______________________________________________
vdsm-patches mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to