qubes/vm: fix TemplateVM.commit_changes

Storage method was renamed to just `commit`, as it applies not only to
templates now.
This commit is contained in:
Marek Marczykowski-Górecki 2016-08-17 01:47:09 +02:00
parent d9e23d6535
commit 3a2a87839f
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -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()