Do not crash when closing a project if VirtualBox is not accessible

Fix #164
This commit is contained in:
Julien Duponchelle 2015-04-29 14:21:02 +02:00
parent e75fbc9d73
commit b9bc73fd01

View File

@ -122,7 +122,12 @@ class VirtualBox(BaseManager):
"""
hdds = []
try:
properties = yield from self.execute("list", ["hdds"])
# If VirtualBox is not available we have no inaccessible hdd
except VirtualBoxError:
return hdds
flag_inaccessible = False
for prop in properties:
try: