Commit 9b3756a0 authored by Jack Jansen's avatar Jack Jansen

Fixed bug in cts error message handling.

parent 35851fdf
...@@ -101,9 +101,9 @@ def emparse_cts(fp): ...@@ -101,9 +101,9 @@ def emparse_cts(fp):
line = line[:-1] line = line[:-1]
if not line: if not line:
continue continue
errors.append(line)
if line[:2] == '|-': if line[:2] == '|-':
break break
errors.append(line)
return errors return errors
def emparse_aol(fp): def emparse_aol(fp):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment