From dd324a99c58619a961c35ef3caf707dc9ded57eb Mon Sep 17 00:00:00 2001 From: ZuluCrypto Date: Wed, 27 Jun 2018 01:20:05 -0600 Subject: [PATCH] stellar.py - fix mising str() cast on type --- trezorlib/stellar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trezorlib/stellar.py b/trezorlib/stellar.py index 3f6fa315e..ae15f1375 100644 --- a/trezorlib/stellar.py +++ b/trezorlib/stellar.py @@ -284,7 +284,7 @@ def _parse_operation_bytes(unpacker): bump_to=unpacker.unpack_uhyper() ) - raise ValueError("Unknown operation type: " + type) + raise ValueError("Unknown operation type: " + str(type)) def _xdr_read_asset(unpacker):