diff options
| author | bwarsaw | 2001-05-01 06:24:32 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-05-01 06:24:32 +0000 |
| commit | 3bff39a37563d61a88ea8240969651a4f01079fc (patch) | |
| tree | 609e7f2036ca0941ecaf87485cd2550bbcf9c6c2 | |
| parent | b0a80e32763e5e433aef217a3b44309ac8532ddf (diff) | |
| download | mailman-3bff39a37563d61a88ea8240969651a4f01079fc.tar.gz mailman-3bff39a37563d61a88ea8240969651a4f01079fc.tar.zst mailman-3bff39a37563d61a88ea8240969651a4f01079fc.zip | |
| -rw-r--r-- | Mailman/Handlers/ToArchive.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Handlers/ToArchive.py b/Mailman/Handlers/ToArchive.py index 5f536b728..1bf10c171 100644 --- a/Mailman/Handlers/ToArchive.py +++ b/Mailman/Handlers/ToArchive.py @@ -36,5 +36,5 @@ def process(mlist, msg, msgdata): # Send the message to the archiver queue archq = get_switchboard(mm_cfg.ARCHQUEUE_DIR) # Send the message to the queue - archq.enqueue(msg, msgdata, - received_time = time.time()) + msgdata.setdefault('received_time', time.time()) + archq.enqueue(msg, msgdata) |
