use binascii.hexlify instead of bytearray.hex (which doesn't exist in python < 3.5)

pull/25/head
matejcik 7 years ago
parent 5edcea9ba6
commit 6b51228090

@ -113,7 +113,7 @@ def format_protobuf(pb, indent=0, sep=' ' * 4):
lines.append(level + '}')
return '\n'.join(lines)
if isinstance(value, bytearray):
return 'bytearray(0x{})'.format(value.hex())
return 'bytearray(0x{})'.format(binascii.hexlify(value).decode('ascii'))
return repr(value)

Loading…
Cancel
Save