summaryrefslogtreecommitdiff
path: root/mailman/commands/echo.py
diff options
context:
space:
mode:
authorBarry Warsaw2008-09-24 22:59:05 -0400
committerBarry Warsaw2008-09-24 22:59:05 -0400
commit12e5731cb50716590c86bdd55a1dae442b8d256c (patch)
treee63e9d6ffcf552472de3076c0739d4871400e586 /mailman/commands/echo.py
parent9be793725d86c2bbd0bb0791bce4aecd80838e48 (diff)
parentc129b48a91d11fd3fb69666b8109c3a9372b2f8f (diff)
downloadmailman-12e5731cb50716590c86bdd55a1dae442b8d256c.tar.gz
mailman-12e5731cb50716590c86bdd55a1dae442b8d256c.tar.zst
mailman-12e5731cb50716590c86bdd55a1dae442b8d256c.zip
thread merge
Diffstat (limited to 'mailman/commands/echo.py')
-rw-r--r--mailman/commands/echo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mailman/commands/echo.py b/mailman/commands/echo.py
index d95e72aa1..547f6a9b2 100644
--- a/mailman/commands/echo.py
+++ b/mailman/commands/echo.py
@@ -25,7 +25,7 @@ __all__ = [
from zope.interface import implements
from mailman.i18n import _
-from mailman.interfaces import IEmailCommand
+from mailman.interfaces import ContinueProcessing, IEmailCommand
SPACE = ' '
@@ -44,4 +44,4 @@ class Echo:
def process(self, mlist, msg, msgdata, arguments, results):
"""See `IEmailCommand`."""
print >> results, 'echo', SPACE.join(arguments)
- return True
+ return ContinueProcessing.yes