summaryrefslogtreecommitdiff
path: root/src/mailman/commands/docs/remove.rst
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/commands/docs/remove.rst')
-rw-r--r--src/mailman/commands/docs/remove.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/commands/docs/remove.rst b/src/mailman/commands/docs/remove.rst
index 35dc53c5e..c534741f3 100644
--- a/src/mailman/commands/docs/remove.rst
+++ b/src/mailman/commands/docs/remove.rst
@@ -25,7 +25,7 @@ A system administrator can remove mailing lists by the command line.
>>> command.process(args)
Removed list: test@example.com
- >>> print list_manager.get('test@example.com')
+ >>> print(list_manager.get('test@example.com'))
None
You can also remove lists quietly.
@@ -37,5 +37,5 @@ You can also remove lists quietly.
>>> args.quiet = True
>>> command.process(args)
- >>> print list_manager.get('test@example.com')
+ >>> print(list_manager.get('test@example.com'))
None