diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-12-06 18:48:11 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-12-06 18:48:11 (GMT) |
commit | abb10753c5543d664e81962f3051bf9bdd9f5476 (patch) | |
tree | c7af3108af33007b46d68a27b7d5f9a175135135 | |
parent | c1b3ed522c6bb331a507d9b114d6d31742c6fa5d (diff) | |
download | cpython-abb10753c5543d664e81962f3051bf9bdd9f5476.zip cpython-abb10753c5543d664e81962f3051bf9bdd9f5476.tar.gz cpython-abb10753c5543d664e81962f3051bf9bdd9f5476.tar.bz2 |
Merged revisions 85146 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85146 | r.david.murray | 2010-10-01 16:38:33 -0400 (Fri, 01 Oct 2010) | 3 lines
Fix docstring typo.
........
-rw-r--r-- | Lib/email/generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/generator.py b/Lib/email/generator.py index 996f9dd..e05b67d 100644 --- a/Lib/email/generator.py +++ b/Lib/email/generator.py @@ -270,7 +270,7 @@ class Generator: _FMT = '[Non-text (%(type)s) part of message omitted, filename %(filename)s]' class DecodedGenerator(Generator): - """Generator a text representation of a message. + """Generates a text representation of a message. Like the Generator base class, except that non-text parts are substituted with a format string representing the part. |