Skip to content

Commit

Permalink
Merge pull request #112 from gm3dmo/v67
Browse files Browse the repository at this point in the history
Adding a fix for the soldier pound signs thing
  • Loading branch information
gm3dmo authored Nov 8, 2023
2 parents 3458036 + be73259 commit 16b80b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/insert-all-soldiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def run():
r = http.request('GET', ref_data_url)
print(r.status)
# load the response into a csv dictionary reader
reader = csv.DictReader(r.data.decode('utf-8').splitlines())
reader = csv.DictReader(r.data.decode('ISO-8859-1').splitlines())
# breakpoint()
print(reader)
# print(reader.fieldnames)
Expand Down

0 comments on commit 16b80b9

Please sign in to comment.