summaryrefslogtreecommitdiff
path: root/src/mailman/commands/docs/remove.rst
diff options
context:
space:
mode:
authorBarry Warsaw2014-04-28 11:23:35 -0400
committerBarry Warsaw2014-04-28 11:23:35 -0400
commitd4d71f71f08d6d440b17482eecc5472dcfe6cbae (patch)
tree71f08b3d60f698883294eaa6d1bf366a095da011 /src/mailman/commands/docs/remove.rst
parent7536530dcd8d6303c0a869e8c9c2cb2517b9b018 (diff)
downloadmailman-d4d71f71f08d6d440b17482eecc5472dcfe6cbae.tar.gz
mailman-d4d71f71f08d6d440b17482eecc5472dcfe6cbae.tar.zst
mailman-d4d71f71f08d6d440b17482eecc5472dcfe6cbae.zip
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