diff options
| author | Barry Warsaw | 2009-01-16 21:04:21 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-01-16 21:04:21 -0500 |
| commit | ae3d0cc316b826b8325507d960ccf84da601c3b0 (patch) | |
| tree | 3485e2ca463c2131a0ffb1693bc60d569cc9d8b7 /mailman/rules/loop.py | |
| parent | a3f7d07c62b2f7d6ac9d0b700883826c2838db60 (diff) | |
| download | mailman-ae3d0cc316b826b8325507d960ccf84da601c3b0.tar.gz mailman-ae3d0cc316b826b8325507d960ccf84da601c3b0.tar.zst mailman-ae3d0cc316b826b8325507d960ccf84da601c3b0.zip | |
Diffstat (limited to 'mailman/rules/loop.py')
| -rw-r--r-- | mailman/rules/loop.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/mailman/rules/loop.py b/mailman/rules/loop.py index a0abbbaa4..564d20dc6 100644 --- a/mailman/rules/loop.py +++ b/mailman/rules/loop.py @@ -17,8 +17,12 @@ """Look for a posting loop.""" -__all__ = ['Loop'] +from __future__ import absolute_import, unicode_literals + __metaclass__ = type +__all__ = [ + 'Loop', + ] from zope.interface import implements @@ -33,7 +37,7 @@ class Loop: implements(IRule) name = 'loop' - description = _("""Look for a posting loop, via the X-BeenThere header.""") + description = _('Look for a posting loop, via the X-BeenThere header.') record = True def check(self, mlist, msg, msgdata): |
