1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

python: show enum number in debug outputs

This commit is contained in:
matejcik 2019-08-08 16:07:48 +02:00 committed by matejcik
parent 3255e8a16a
commit aa19f9d737

View File

@ -415,7 +415,7 @@ def format_message(
if isinstance(value, int):
ftype = get_type(name)
if isinstance(ftype, EnumType):
return ftype.to_str(value)
return "{} ({})".format(ftype.to_str(value), value)
return repr(value)