We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27948bf commit ab8d826Copy full SHA for ab8d826
sc2reader/scripts/sc2parse.py
@@ -68,7 +68,7 @@ def main():
68
print('{build} - {real_type} on {map_name} - Played {start_time}'.format(**e.replay.__dict__))
69
print('[ERROR]', e.message)
70
for event in e.game_events[-5:]:
71
- print('{0} - {1}'.format(hex(event.type), event.bytes.encode('hex')))
+ print('{0}'.format(event))
72
print(e.buffer.read_range(e.location, e.location+50).encode('hex'))
73
print
74
except Exception as e:
0 commit comments