From: Jonatan Schlag Date: Thu, 19 Apr 2018 11:01:09 +0000 (+0200) Subject: Fix deleting the snapshot of our machines X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ec6e622df940ee283a700b3bd21fcab79c8ea87d;p=people%2Fms%2Fnitsi.git Fix deleting the snapshot of our machines Signed-off-by: Jonatan Schlag --- diff --git a/test.py b/test.py index d2a6d97..064633f 100755 --- a/test.py +++ b/test.py @@ -109,7 +109,7 @@ class vm(): def revert_snapshot(self): print(inspect.getmembers(self.dom, predicate=inspect.ismethod)) self.dom.revertToSnapshot(self.snapshot) - #self.dom.SnapshotDelete(self.snapshot) + self.snapshot.delete() def is_running(self):