IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 73edede9 authored by ralfulrich's avatar ralfulrich
Browse files

consider utf8

parent 906b2a20
No related branches found
No related tags found
1 merge request!123Copyright
...@@ -46,7 +46,7 @@ def checkNote(filename): ...@@ -46,7 +46,7 @@ def checkNote(filename):
# read input file into lines # read input file into lines
lines = [] lines = []
with open(filename, "r") as file: with open(filename, "r", encoding="utf-8") as file:
for line in file.readlines(): for line in file.readlines():
lines.append(line) lines.append(line)
file.close() file.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment