summaryrefslogtreecommitdiff
path: root/src/mailman/handlers/to_digest.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/handlers/to_digest.py')
-rw-r--r--src/mailman/handlers/to_digest.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/handlers/to_digest.py b/src/mailman/handlers/to_digest.py
index 54679f47e..671a2197c 100644
--- a/src/mailman/handlers/to_digest.py
+++ b/src/mailman/handlers/to_digest.py
@@ -17,13 +17,9 @@
"""Add the message to the list's current digest."""
-__all__ = [
- 'ToDigest',
- ]
-
-
import os
+from mailman import public
from mailman.app.digests import maybe_send_digest_now
from mailman.core.i18n import _
from mailman.interfaces.handler import IHandler
@@ -31,7 +27,7 @@ from mailman.utilities.mailbox import Mailbox
from zope.interface import implementer
-
+@public
@implementer(IHandler)
class ToDigest:
"""Add the message to the digest, possibly sending it."""