summaryrefslogtreecommitdiff
path: root/src/mailman/model/docs/autorespond.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/model/docs/autorespond.rst
parent7536530dcd8d6303c0a869e8c9c2cb2517b9b018 (diff)
downloadmailman-d4d71f71f08d6d440b17482eecc5472dcfe6cbae.tar.gz
mailman-d4d71f71f08d6d440b17482eecc5472dcfe6cbae.tar.zst
mailman-d4d71f71f08d6d440b17482eecc5472dcfe6cbae.zip
Use print functions consistently through, and update all __future__ imports to
reflect this. Also, mock out sys.stderr on some tests so that their nose2 output is quieter. A few other minor coding style consistencies.
Diffstat (limited to 'src/mailman/model/docs/autorespond.rst')
-rw-r--r--src/mailman/model/docs/autorespond.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/model/docs/autorespond.rst b/src/mailman/model/docs/autorespond.rst
index b2bf03ed9..6210e48cb 100644
--- a/src/mailman/model/docs/autorespond.rst
+++ b/src/mailman/model/docs/autorespond.rst
@@ -112,5 +112,5 @@ If there's been no response sent to a particular address, None is returned.
... 'bperson@example.com')
>>> response_set.todays_count(address, Response.command)
0
- >>> print response_set.last_response(address, Response.command)
+ >>> print(response_set.last_response(address, Response.command))
None