Skip to content

Commit

Permalink
Merge pull request #74284 from mdtrooper/issues/#74282
Browse files Browse the repository at this point in the history
Fixed tools/json_tools/table.py and this get clean csv file for tools/gfx_tools/tileset_coverage.py
  • Loading branch information
Maleclypse authored Jun 4, 2024
2 parents 99504cc + 5c61ac1 commit 43be6b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/json_tools/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def __init__(self):
self.writer = csv.writer(sys.stdout)

def to_utf8(self, lst):
return [str(elem).encode('utf-8') for elem in lst]
return [str(elem) for elem in lst]

def header(self, columns):
self.row(columns)
Expand Down

0 comments on commit 43be6b6

Please sign in to comment.