From 3a2a87839f682615613bc7172862362caf5a5fc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Wed, 17 Aug 2016 01:47:09 +0200 Subject: [PATCH] qubes/vm: fix TemplateVM.commit_changes Storage method was renamed to just `commit`, as it applies not only to templates now. --- qubes/vm/templatevm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubes/vm/templatevm.py b/qubes/vm/templatevm.py index 9ca789f2..fc172b98 100644 --- a/qubes/vm/templatevm.py +++ b/qubes/vm/templatevm.py @@ -103,4 +103,4 @@ class TemplateVM(QubesVM): assert not self.is_running(), \ 'Attempt to commit changes on running Template VM!' - self.storage.commit_template_changes() + self.storage.commit()