aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Archiver/HyperArch.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Archiver/HyperArch.py')
-rw-r--r--Mailman/Archiver/HyperArch.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py
index 9f64def7..e922b020 100644
--- a/Mailman/Archiver/HyperArch.py
+++ b/Mailman/Archiver/HyperArch.py
@@ -559,6 +559,12 @@ class Article(pipermail.Article):
break
self.body.append(line)
+ def finished_update_article(self):
+ self.body = []
+ try:
+ del self.html_body
+ except AttributeError:
+ pass
class HyperArchive(pipermail.T):