summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-11-10 14:56:16 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-11-10 14:56:16 (GMT)
commite48aa966c1f11ee6d66fc96a92dc4972d52353b8 (patch)
tree80117f73921991bbcd439f9b4a5b7d56c3b22dd0 /Tools
parente2ac51efccb049df59889f1278f5cbe266d268ab (diff)
downloadcpython-e48aa966c1f11ee6d66fc96a92dc4972d52353b8.zip
cpython-e48aa966c1f11ee6d66fc96a92dc4972d52353b8.tar.gz
cpython-e48aa966c1f11ee6d66fc96a92dc4972d52353b8.tar.bz2
Fixed bug in cts error message handling.
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/mailerdaemon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/mailerdaemon.py b/Tools/scripts/mailerdaemon.py
index 075df1f..245f670 100755
--- a/Tools/scripts/mailerdaemon.py
+++ b/Tools/scripts/mailerdaemon.py
@@ -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):