diff options
| -rw-r--r-- | src/mailman/runners/docs/digester.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mailman/runners/docs/digester.rst b/src/mailman/runners/docs/digester.rst index 42004bf06..d0231a895 100644 --- a/src/mailman/runners/docs/digester.rst +++ b/src/mailman/runners/docs/digester.rst @@ -429,9 +429,8 @@ The content can be decoded to see the actual digest text. # We must display the repr of the decoded value because doctests cannot # handle the non-ascii characters. - >>> import pprint - >>> print pprint.pformat([repr(line) - ... for line in rfc1153.msg.get_payload(decode=True).splitlines()]) + >>> [repr(line) + ... for line in rfc1153.msg.get_payload(decode=True).splitlines()] ["'Envoyez vos messages pour la liste Test \\xc3\\xa0'", "'\\ttest@example.com'", "''", |
