1
0

trezor: raise and catch BaseException in signing

This commit is contained in:
ThomasV
2014-10-24 10:53:09 +02:00
parent 8347ad5449
commit 956f69f3d3
3 changed files with 7 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ class WaitingDialog(QThread):
self.error = None
try:
self.result = self.run_task()
except Exception as e:
except BaseException as e:
traceback.print_exc(file=sys.stdout)
self.error = str(e)
self.d.emit(SIGNAL('done'))