diff options
Diffstat (limited to 'src/mailman/runners/digest.py')
| -rw-r--r-- | src/mailman/runners/digest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/runners/digest.py b/src/mailman/runners/digest.py index 4173d9673..9b8335024 100644 --- a/src/mailman/runners/digest.py +++ b/src/mailman/runners/digest.py @@ -323,8 +323,6 @@ class DigestRunner(Runner): # Finish up the digests. mime = mime_digest.finish() rfc1153 = rfc1153_digest.finish() - # Remove the digest mbox (GL#259) - os.remove(msgdata['digest_path']) # Calculate the recipients lists mime_recipients = set() rfc1153_recipients = set() @@ -372,3 +370,5 @@ class DigestRunner(Runner): recipients=rfc1153_recipients, listid=mlist.list_id, isdigest=True) + # Remove the digest mbox (GL#259) + os.remove(msgdata['digest_path']) |
