Skip to content

Commit

Permalink
Update script to account for accidental trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
edamboritz committed Dec 8, 2021
1 parent 0ed57fb commit 5ebaf1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/update_texts_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
for l in rows:
needs_save = False
try:
i = library.get_index(l[0])
i = library.get_index(l[0].strip())
except Exception as e:
print("Count not load {}. {}".format(l[0], e))
continue
Expand Down

0 comments on commit 5ebaf1e

Please sign in to comment.