Skip to content

Commit 12c530c

Browse files
committed
Fix small name decoding issues.
1 parent d64df3b commit 12c530c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sc2reader/readers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ def __call__(self, data, replay):
746746
details = BitPackedDecoder(data).read_struct()
747747
return dict(
748748
players=[dict(
749-
name=p[0],
749+
name=p[0].decode('utf8'),
750750
bnet=dict(
751751
region=p[1][0],
752752
program_id=p[1][1],

0 commit comments

Comments
 (0)