summaryrefslogtreecommitdiff
path: root/src/mailman/handlers/decorate.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/handlers/decorate.py')
-rw-r--r--src/mailman/handlers/decorate.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mailman/handlers/decorate.py b/src/mailman/handlers/decorate.py
index 34430b80f..22bb744bc 100644
--- a/src/mailman/handlers/decorate.py
+++ b/src/mailman/handlers/decorate.py
@@ -67,7 +67,8 @@ def process(mlist, msg, msgdata):
for archiver in archivers if archiver.is_enabled]
archive_urls = [(archiver,url) for archiver, url in archive_urls if url is not None]
if len(archive_urls):
- d['archive_url'] = dict(archive_urls)
+ for archiver, url in archive_urls:
+ d[archiver + '_url'] = url
# These strings are descriptive for the log file and shouldn't be i18n'd
d.update(msgdata.get('decoration-data', {}))
try: