'redirs' and 'vnc_port' might be used before they're defined, if
make_qemu_command() is called before create().  To make sure this doesn't
happen, define them in the VM constructor.

Signed-off-by: Michael Goldish <mgold...@redhat.com>
---
 client/tests/kvm/kvm_vm.py |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py
index 8bc2403..d96b359 100644
--- a/client/tests/kvm/kvm_vm.py
+++ b/client/tests/kvm/kvm_vm.py
@@ -112,6 +112,8 @@ class VM:
         @param iso_dir: The directory where ISOs reside
         """
         self.process = None
+        self.redirs = {}
+        self.vnc_port = 5900
         self.uuid = None
 
         self.name = name
-- 
1.5.4.1

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to