Minor update

This commit is contained in:
Miroslav Stampar
2019-05-08 02:32:49 +02:00
parent fa2572f58a
commit d5fb3a0d8b
3 changed files with 3 additions and 3 deletions

View File

@@ -2293,7 +2293,7 @@ def initCommonOutputs():
key = None
with openFile(paths.COMMON_OUTPUTS, 'r') as f:
for line in f.readlines(): # xreadlines doesn't return unicode strings when codec.open() is used
for line in f:
if line.find('#') != -1:
line = line[:line.find('#')]