python: show enum number in debug outputs

pull/404/head
matejcik 5 years ago committed by matejcik
parent 3255e8a16a
commit aa19f9d737

@ -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)

Loading…
Cancel
Save