summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2001-10-28 20:43:13 +0000
committerbwarsaw2001-10-28 20:43:13 +0000
commit28b572ea99126e3e864f6127d64720bc32e0dd1c (patch)
tree49f99d35217d2063cb4adac803b9aa5458de962b
parentc0dfd3a654e7b45d599c120c3b8aecc45a451ba4 (diff)
downloadmailman-28b572ea99126e3e864f6127d64720bc32e0dd1c.tar.gz
mailman-28b572ea99126e3e864f6127d64720bc32e0dd1c.tar.zst
mailman-28b572ea99126e3e864f6127d64720bc32e0dd1c.zip
-rw-r--r--Mailman/Archiver/HyperArch.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py
index 87b2b3f1b..b36171d58 100644
--- a/Mailman/Archiver/HyperArch.py
+++ b/Mailman/Archiver/HyperArch.py
@@ -836,9 +836,8 @@ Archive working file %s present. Check %s for possibly unarchived msgs',
d = article.decoded
subject = d.get("subject", article.subject)
author = d.get("author", article.author)
- else:
- subject = CGIescape(article.subject)
- author = CGIescape(article.author)
+ subject = CGIescape(article.subject)
+ author = CGIescape(article.author)
print index_entry_template % (urllib.quote(article.filename),
subject, article.sequence, author)