diff options
| author | bwarsaw | 2001-05-31 16:06:50 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-05-31 16:06:50 +0000 |
| commit | 78f417ac7bc30d750934bb74fd922b001d20fd62 (patch) | |
| tree | 66230ec9e9a955b8a309eaf294cb2176c1d94816 /Mailman/Utils.py | |
| parent | e6841ce42f4df2ee2fecc659adffbede2005afb9 (diff) | |
| download | mailman-78f417ac7bc30d750934bb74fd922b001d20fd62.tar.gz mailman-78f417ac7bc30d750934bb74fd922b001d20fd62.tar.zst mailman-78f417ac7bc30d750934bb74fd922b001d20fd62.zip | |
Diffstat (limited to 'Mailman/Utils.py')
| -rw-r--r-- | Mailman/Utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py index a73cbaf7a..7fb4f75d4 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -520,7 +520,7 @@ def maketext(templatefile, dict=None, raw=0, lang=None, mlist=None): if dict is not None: try: text = template % SafeDict(dict) - except TypeError: + except (TypeError, ValueError): # The template is really screwed up pass if raw: |
