commit ec86850a2e7caa16d96e08c090e98d3b6be4ad1a
parent e2eb051eed67d0c8f404fe69d94b28b33f8d6d98
Author: SomberNight <somber.night@protonmail.com>
Date: Wed, 13 Feb 2019 18:33:48 +0100
trezor: fix minor error handling issue
AttributeError: 'TrezorFailure' object has no attribute 'message'
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/plugins/trezor/clientbase.py b/electrum/plugins/trezor/clientbase.py
@@ -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: