diff options
| author | Barry Warsaw | 2007-11-17 17:38:50 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2007-11-17 17:38:50 -0500 |
| commit | 8a7be9204a9170f9d9b0eb79c2726df0c7a1b4a9 (patch) | |
| tree | 401197ca63700b9b4d30b00bcd1e6cbad881a8bc /Mailman/Handlers/Hold.py | |
| parent | 12ace359ccceb507ac2e55c1333f63d3d92af6f7 (diff) | |
| parent | 02f3861eae46de1b6e580e257d25aa9a4c73a687 (diff) | |
| download | mailman-8a7be9204a9170f9d9b0eb79c2726df0c7a1b4a9.tar.gz mailman-8a7be9204a9170f9d9b0eb79c2726df0c7a1b4a9.tar.zst mailman-8a7be9204a9170f9d9b0eb79c2726df0c7a1b4a9.zip | |
Merge cleanup branch
Diffstat (limited to 'Mailman/Handlers/Hold.py')
| -rw-r--r-- | Mailman/Handlers/Hold.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mailman/Handlers/Hold.py b/Mailman/Handlers/Hold.py index bef1fa24f..f53c168c5 100644 --- a/Mailman/Handlers/Hold.py +++ b/Mailman/Handlers/Hold.py @@ -99,11 +99,12 @@ word `help' in it to the request address, $request, for further instructions.""") class SuspiciousHeaders(Errors.HoldMessage): - reason = _('Message has a suspicious header') - rejection = _('Your message had a suspicious header.') + reason = _('Message has a suspicious header') + rejection = _('Your message had a suspicious header.') class MessageTooBig(Errors.HoldMessage): def __init__(self, msgsize, limit): + Errors.HoldMessage.__init__(self) self.__msgsize = msgsize self.__limit = limit |
