Save configs when project is committed.

This commit is contained in:
grossmj
2015-03-21 14:52:17 -06:00
parent 628dfef0d3
commit 2d6d153262
3 changed files with 25 additions and 0 deletions

View File

@ -324,6 +324,8 @@ class Project:
vm = self._vms_to_destroy.pop()
yield from vm.delete()
self.remove_vm(vm)
for module in self.modules():
yield from module.instance().project_committed(self)
@asyncio.coroutine
def delete(self):