summaryrefslogtreecommitdiff
path: root/src/mailman/commands/eml_end.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/commands/eml_end.py')
-rw-r--r--src/mailman/commands/eml_end.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/mailman/commands/eml_end.py b/src/mailman/commands/eml_end.py
index 1e14a262d..82b66a1a6 100644
--- a/src/mailman/commands/eml_end.py
+++ b/src/mailman/commands/eml_end.py
@@ -17,18 +17,13 @@
"""The email commands 'end' and 'stop'."""
-__all__ = [
- 'End',
- 'Stop',
- ]
-
-
+from mailman import public
from mailman.core.i18n import _
from mailman.interfaces.command import ContinueProcessing, IEmailCommand
from zope.interface import implementer
-
+@public
@implementer(IEmailCommand)
class End:
"""The email 'end' command."""
@@ -44,6 +39,7 @@ class End:
return ContinueProcessing.no
+@public
class Stop(End):
"""The email 'stop' command (an alias for 'end')."""