use utf-8

This commit is contained in:
Paul Gauthier 2023-07-05 20:51:35 -07:00
parent 7542449629
commit ca45db2898

View file

@ -11,10 +11,10 @@ def main():
file_orig, file_updated = sys.argv[1], sys.argv[2]
with open(file_orig, "r") as f:
with open(file_orig, "r", encoding="utf-8") as f:
lines_orig = f.readlines()
with open(file_updated, "r") as f:
with open(file_updated, "r", encoding="utf-8") as f:
lines_updated = f.readlines()
for i in range(len(file_updated)):