summaryrefslogtreecommitdiff
path: root/src/mailman/rules/truth.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/rules/truth.py')
-rw-r--r--src/mailman/rules/truth.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mailman/rules/truth.py b/src/mailman/rules/truth.py
index 16b2e1893..9883a0e60 100644
--- a/src/mailman/rules/truth.py
+++ b/src/mailman/rules/truth.py
@@ -17,15 +17,13 @@
"""A rule which always matches."""
+from mailman import public
from mailman.core.i18n import _
from mailman.interfaces.rules import IRule
from zope.interface import implementer
-__all__ = [
- 'Truth',
- ]
-
+@public
@implementer(IRule)
class Truth:
"""Look for any previous rule match."""