Signed-off-by: Lucas Meneghel Rodrigues <[email protected]>
---
client/virt/virt_vm.py | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/client/virt/virt_vm.py b/client/virt/virt_vm.py
index 1c379bf..53d7c2c 100644
--- a/client/virt/virt_vm.py
+++ b/client/virt/virt_vm.py
@@ -233,14 +233,11 @@ class VMMigrateProtoUnsupportedError(VMMigrateError):
class VMMigrateStateMismatchError(VMMigrateError):
- def __init__(self, src_hash, dst_hash):
- VMMigrateError.__init__(self, src_hash, dst_hash)
- self.src_hash = src_hash
- self.dst_hash = dst_hash
+ def __init__(self):
+ VMMigrateError.__init__(self)
def __str__(self):
- return ("Mismatch of VM state before and after migration (%s != %s)" %
- (self.src_hash, self.dst_hash))
+ return ("Mismatch of VM state before and after migration")
class VMRebootError(VMError):
--
1.7.11.4
_______________________________________________
Autotest-kernel mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/autotest-kernel