commit | 3d12c4317c2970d65bf30e941070017a8d1be210 | [log] [tgz] |
---|---|---|
author | Petri Lehtinen <petri@digip.org> | Wed Aug 15 14:00:40 2012 +0300 |
committer | Petri Lehtinen <petri@digip.org> | Wed Aug 15 14:26:27 2012 +0300 |
tree | 418a655a5f37bc1559f0f101c88f88cadd7b9d9b | |
parent | 2b209cd78d5a36d63b00d0a4350b78aec7bc820b [diff] [blame] |
#11062: Fix adding a message from file to Babyl mailbox
diff --git a/Lib/mailbox.py b/Lib/mailbox.py index 8b00460..73fe7d6 100644 --- a/Lib/mailbox.py +++ b/Lib/mailbox.py
@@ -1443,9 +1443,9 @@ line = line[:-1] + b'\n' self._file.write(line.replace(b'\n', linesep)) if line == b'\n' or not line: - self._file.write(b'*** EOOH ***' + linesep) if first_pass: first_pass = False + self._file.write(b'*** EOOH ***' + linesep) message.seek(original_pos) else: break