summaryrefslogtreecommitdiff
path: root/src/mailman/handlers/file_recipients.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/handlers/file_recipients.py')
-rw-r--r--src/mailman/handlers/file_recipients.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/handlers/file_recipients.py b/src/mailman/handlers/file_recipients.py
index 7e4d07bd4..95160706a 100644
--- a/src/mailman/handlers/file_recipients.py
+++ b/src/mailman/handlers/file_recipients.py
@@ -17,20 +17,16 @@
"""Get the normal delivery recipients from a Sendmail style :include: file."""
-__all__ = [
- 'FileRecipients',
- ]
-
-
import os
import errno
+from mailman import public
from mailman.core.i18n import _
from mailman.interfaces.handler import IHandler
from zope.interface import implementer
-
+@public
@implementer(IHandler)
class FileRecipients:
"""Get the normal delivery recipients from an include file."""