diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-12-06 18:48:31 +0000 |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-12-06 18:48:31 +0000 |
commit | 82e7aaee56b511dfbb7c2689eadd131eebd27914 (patch) | |
tree | 9b6b93955ebb958bf5572359f5bf0d2f0284a1f6 /Lib/email/generator.py | |
parent | 13219a3e9b433a563a140ea05d842667d0982b7a (diff) | |
download | cpython-git-82e7aaee56b511dfbb7c2689eadd131eebd27914.tar.gz |
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.
........
Diffstat (limited to 'Lib/email/generator.py')
-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 ce9c36bbdb..fa45dcb7ea 100644 --- a/Lib/email/generator.py +++ b/Lib/email/generator.py @@ -292,7 +292,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. |