diff options
| author | Barry Warsaw | 2008-08-12 20:54:04 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-08-12 20:54:04 -0400 |
| commit | ae24685f77661f19ee0357e9328737b6a3251596 (patch) | |
| tree | c9129496aaf12ca3ce126099f89967b6ce751a2a /mailman/commands/echo.py | |
| parent | 67e437883d520bf7ea78ae55235892aa946ef0b4 (diff) | |
| download | mailman-ae24685f77661f19ee0357e9328737b6a3251596.tar.gz mailman-ae24685f77661f19ee0357e9328737b6a3251596.tar.zst mailman-ae24685f77661f19ee0357e9328737b6a3251596.zip | |
Diffstat (limited to 'mailman/commands/echo.py')
| -rw-r--r-- | mailman/commands/echo.py | 4 |
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 |
