Remove spurious try statement
This commit is contained in:
parent
f2db381969
commit
dc661a8ea8
|
@ -203,8 +203,7 @@ class VMInstance:
|
||||||
# Check the current state of the VM
|
# Check the current state of the VM
|
||||||
try:
|
try:
|
||||||
if self.dom != None:
|
if self.dom != None:
|
||||||
try:
|
running, reason = self.dom.state()
|
||||||
running, reason = self.dom.state()
|
|
||||||
else:
|
else:
|
||||||
raise
|
raise
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in New Issue