diff options
Diffstat (limited to 'Mailman/Archiver/Archiver.py')
| -rw-r--r-- | Mailman/Archiver/Archiver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Archiver/Archiver.py b/Mailman/Archiver/Archiver.py index 935480242..3bba6efc6 100644 --- a/Mailman/Archiver/Archiver.py +++ b/Mailman/Archiver/Archiver.py @@ -216,7 +216,7 @@ class Archiver: txt = msg.unixfrom for h in msg.headers: txt = txt + h - if msg.body[0] != '\n': + if not msg.body or msg.body[0] <> '\n': txt = txt + "\n" for line in string.split(msg.body, '\n'): # Quote unprotected From_ lines appearing in body |
