1
0

Catch possible KeyError when starting dispVM

Este cometimento está contido em:
donoban 2018-11-18 20:23:26 +01:00
ascendente 935a6ca6c7
cometimento 287fc441f3
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 141310D8E3ED08A5

Ver ficheiro

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