summaryrefslogtreecommitdiff
path: root/src/mailman/commands/docs/echo.txt
diff options
context:
space:
mode:
authorBarry Warsaw2009-07-17 01:16:27 -0400
committerBarry Warsaw2009-07-17 01:16:27 -0400
commit422a6757e6aafbd12c220aa8dfdc33f8c377718c (patch)
tree6ef992640eb9a29079ad7be3fb34eae2b81fcf47 /src/mailman/commands/docs/echo.txt
parent1bfc7f302f2730a679b2a4a103c2978d8e7c70ae (diff)
downloadmailman-422a6757e6aafbd12c220aa8dfdc33f8c377718c.tar.gz
mailman-422a6757e6aafbd12c220aa8dfdc33f8c377718c.tar.zst
mailman-422a6757e6aafbd12c220aa8dfdc33f8c377718c.zip
De-u-literal-ify our doctests.
Diffstat (limited to 'src/mailman/commands/docs/echo.txt')
-rw-r--r--src/mailman/commands/docs/echo.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/commands/docs/echo.txt b/src/mailman/commands/docs/echo.txt
index 95b50b523..31da2dfcb 100644
--- a/src/mailman/commands/docs/echo.txt
+++ b/src/mailman/commands/docs/echo.txt
@@ -9,13 +9,13 @@ to the sender.
'echo'
>>> command.argument_description
'[args]'
- >>> command.description
- u'Echo an acknowledgement. Arguments are return unchanged.'
+ >>> print command.description
+ Echo an acknowledgement. Arguments are return unchanged.
The original message is ignored, but the results receive the echoed command.
>>> from mailman.app.lifecycle import create_list
- >>> mlist = create_list(u'test@example.com')
+ >>> mlist = create_list('test@example.com')
>>> from mailman.queue.command import Results
>>> results = Results()