tool/dump_tlv: add ': ' after tag

This commit is contained in:
Matthias Ringwald 2017-11-20 17:50:47 +01:00
parent f4780d30b0
commit 46412789ba

View File

@ -60,7 +60,7 @@ with open (infile, 'rb') as fin:
pos += 4
packet = fin.read(len)
pos += len
print('%04x' % tag + as_hex(packet))
print('%04x: ' % tag + as_hex(packet))
print("Done")
except TypeError: