Avoid crash when closing vms

Otherwise the size of dict change and Python raise
an exception.
pull/100/head
Julien Duponchelle 10 years ago
parent 017c5ac9f6
commit 7bed9f56bc

@ -97,7 +97,7 @@ class BaseManager:
@asyncio.coroutine
def unload(self):
for uuid in self._vms.keys():
for uuid in list(self._vms.keys()):
try:
yield from self.delete_vm(uuid)
except Exception as e:

Loading…
Cancel
Save