Skip to content
Snippets Groups Projects
Commit dbc94a38 authored by mads's avatar mads
Browse files

readlines -> utf-8

parent 8d600e24
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ class HTCFile(HTCContents, HTCDefaults):
def readlines(self, filename):
self.htc_inputfiles.append(filename)
htc_lines = []
with open(filename) as fid:
with open(filename, encoding='utf-8') as fid:
lines = fid.readlines()
for l in lines:
if l.lower().lstrip().startswith('continue_in_file'):
......
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