summaryrefslogtreecommitdiff
path: root/src/mailman/handlers/acknowledge.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/handlers/acknowledge.py')
-rw-r--r--src/mailman/handlers/acknowledge.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/handlers/acknowledge.py b/src/mailman/handlers/acknowledge.py
index db56c5806..809711426 100644
--- a/src/mailman/handlers/acknowledge.py
+++ b/src/mailman/handlers/acknowledge.py
@@ -20,11 +20,7 @@
This only happens if the sender has set their AcknowledgePosts attribute.
"""
-__all__ = [
- 'Acknowledge',
- ]
-
-
+from mailman import public
from mailman.core.i18n import _
from mailman.email.message import UserNotification
from mailman.interfaces.handler import IHandler
@@ -35,7 +31,7 @@ from zope.component import getUtility
from zope.interface import implementer
-
+@public
@implementer(IHandler)
class Acknowledge:
"""Send an acknowledgment."""