Catch possible KeyError when starting dispVM

This commit is contained in:
donoban 2018-11-18 20:23:26 +01:00
parent 935a6ca6c7
commit 287fc441f3
No known key found for this signature in database
GPG Key ID: 141310D8E3ED08A5

View File

@ -34,8 +34,8 @@ class RemoveVMThread(QtCore.QThread):
def run(self):
try:
del self.vm.app.domains[self.vm.name]
except exc.QubesException as ex:
self.msg = ("Error removing Qube!", str(ex))
except (exc.QubesException, KeyError) as ex:
self.msg = ("Error removing qube!", str(ex))
# pylint: disable=too-few-public-methods