1
0

trezor: fix minor error handling issue

AttributeError: 'TrezorFailure' object has no attribute 'message'
This commit is contained in:
SomberNight
2019-02-13 18:33:48 +01:00
parent e2eb051eed
commit ec86850a2e

View File

@@ -65,7 +65,7 @@ class TrezorClientBase(PrintError):
if issubclass(exc_type, Cancelled):
raise UserCancelled from exc_value
elif issubclass(exc_type, TrezorFailure):
raise RuntimeError(exc_value.message) from exc_value
raise RuntimeError(str(exc_value)) from exc_value
elif issubclass(exc_type, OutdatedFirmwareError):
raise UserFacingException(exc_value) from exc_value
else: