diff options
Diffstat (limited to 'src/mailman/commands/docs/help.rst')
| -rw-r--r-- | src/mailman/commands/docs/help.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/commands/docs/help.rst b/src/mailman/commands/docs/help.rst index 35ba87caa..5330a0b79 100644 --- a/src/mailman/commands/docs/help.rst +++ b/src/mailman/commands/docs/help.rst @@ -25,7 +25,7 @@ short description of each of them. >>> from mailman.email.message import Message >>> print(help.process(mlist, Message(), {}, (), results)) ContinueProcessing.yes - >>> print(results.decode('utf-8')) + >>> print(results) The results of your email command are provided below. <BLANKLINE> confirm - Confirm a subscription request. @@ -44,7 +44,7 @@ With an argument, you can get more detailed help about a specific command. >>> results = Results() >>> print(help.process(mlist, Message(), {}, ('help',), results)) ContinueProcessing.yes - >>> print(results.decode('utf-8')) + >>> print(results) The results of your email command are provided below. <BLANKLINE> help [command] @@ -56,7 +56,7 @@ Some commands have even more detailed help. >>> results = Results() >>> print(help.process(mlist, Message(), {}, ('join',), results)) ContinueProcessing.yes - >>> print(results.decode('utf-8')) + >>> print(results) The results of your email command are provided below. <BLANKLINE> join [digest=<no|mime|plain>] |
