From dc661a8ea81e5f5d7e40ea10e79d7e0ede1c5c48 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Wed, 6 Jun 2018 11:42:49 -0400 Subject: [PATCH] Remove spurious try statement --- VMInstance.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/VMInstance.py b/VMInstance.py index 6330279f..796a6ceb 100644 --- a/VMInstance.py +++ b/VMInstance.py @@ -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: