diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-10-01 20:38:33 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-10-01 20:38:33 (GMT) |
commit | 70a9993bfde88b9f36ea25d3c09e8d8fe082e6c9 (patch) | |
tree | 8d1678b9999e09a774794ff7fb67b84b6e261180 /Lib/email | |
parent | 31e984c39cc7171f58878f772d0c9ad234893b2a (diff) | |
download | cpython-70a9993bfde88b9f36ea25d3c09e8d8fe082e6c9.zip cpython-70a9993bfde88b9f36ea25d3c09e8d8fe082e6c9.tar.gz cpython-70a9993bfde88b9f36ea25d3c09e8d8fe082e6c9.tar.bz2 |
Fix docstring typo.
Diffstat (limited to 'Lib/email')
-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. |