python: fix logging of protobuf repeated enums

pull/1173/head
matejcik 4 years ago
parent c244503e1f
commit 037bef3a38

@ -455,7 +455,7 @@ def format_message(
if isinstance(value, list):
# short list of simple values
if not value or isinstance(value[0], int):
if not value or ftype in (UVarintType, SVarintType, BoolType):
return repr(value)
# long list, one line per entry

Loading…
Cancel
Save