Fixed bug in cts error message handling.

This commit is contained in:
Jack Jansen 1995-11-10 14:56:16 +00:00
parent e2ac51efcc
commit e48aa966c1
1 changed files with 1 additions and 1 deletions

View File

@ -101,9 +101,9 @@ def emparse_cts(fp):
line = line[:-1]
if not line:
continue
errors.append(line)
if line[:2] == '|-':
break
errors.append(line)
return errors
def emparse_aol(fp):