diff options
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: |
