diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 1995-11-10 14:56:16 +0000 |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-11-10 14:56:16 +0000 |
| commit | e48aa966c1f11ee6d66fc96a92dc4972d52353b8 (patch) | |
| tree | 80117f73921991bbcd439f9b4a5b7d56c3b22dd0 /Tools/scripts | |
| parent | e2ac51efccb049df59889f1278f5cbe266d268ab (diff) | |
| download | cpython-git-e48aa966c1f11ee6d66fc96a92dc4972d52353b8.tar.gz | |
Fixed bug in cts error message handling.
Diffstat (limited to 'Tools/scripts')
| -rwxr-xr-x | Tools/scripts/mailerdaemon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/mailerdaemon.py b/Tools/scripts/mailerdaemon.py index 075df1f1f6..245f670217 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): |
