Remove spurious try statement

This commit is contained in:
Joshua Boniface 2018-06-06 11:42:49 -04:00
parent f2db381969
commit dc661a8ea8
1 changed files with 1 additions and 2 deletions

View File

@ -203,8 +203,7 @@ class VMInstance:
# Check the current state of the VM
try:
if self.dom != None:
try:
running, reason = self.dom.state()
running, reason = self.dom.state()
else:
raise
except: