diff options
| author | bwarsaw | 2002-03-05 04:47:45 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-03-05 04:47:45 +0000 |
| commit | ffb88aca12806f1a18bc35bebc1f95419f121e91 (patch) | |
| tree | cda462dc39473515ee48a0dbbcd817f42e515559 /Mailman/HTMLFormatter.py | |
| parent | fb76c6e5e78ada9a3c22802e0905f8c22598b615 (diff) | |
| download | mailman-ffb88aca12806f1a18bc35bebc1f95419f121e91.tar.gz mailman-ffb88aca12806f1a18bc35bebc1f95419f121e91.tar.zst mailman-ffb88aca12806f1a18bc35bebc1f95419f121e91.zip | |
Diffstat (limited to 'Mailman/HTMLFormatter.py')
| -rw-r--r-- | Mailman/HTMLFormatter.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py index 882a71146..fb9ea4258 100644 --- a/Mailman/HTMLFormatter.py +++ b/Mailman/HTMLFormatter.py @@ -116,6 +116,7 @@ class HTMLFormatter: mm_cfg.ConcealSubscription : 'conceal', mm_cfg.SuppressPasswordReminder : 'remind', mm_cfg.ReceiveNonmatchingTopics : 'rcvtopic', + mm_cfg.DontReceiveDuplicates : 'nodupes', }[option] return '<input type=radio name="%s" value="%d"%s>' % ( name, value, checked) @@ -340,7 +341,7 @@ class HTMLFormatter: def ParseTags(self, template, replacements, lang=None): text = Utils.maketext(template, raw=1, lang=lang, mlist=self) - parts = re.split('(</?[Mm][Mm]-[^>]*>)', text) + parts = re.split('(</?[Mm][Mm]-[^>]*>)', text) i = 1 while i < len(parts): tag = parts[i].lower() |
