diff options
author | Georg Brandl <georg@python.org> | 2014-10-02 10:35:08 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-02 10:35:08 (GMT) |
commit | 529452926b25f0461cc4a1da4ab85f0e6fdd661b (patch) | |
tree | f8a41820f9ab514baf095160951be33825f535b4 /Lib/email | |
parent | 4601df58e7d9e8901e11626122ccadab191a602b (diff) | |
download | cpython-529452926b25f0461cc4a1da4ab85f0e6fdd661b.zip cpython-529452926b25f0461cc4a1da4ab85f0e6fdd661b.tar.gz cpython-529452926b25f0461cc4a1da4ab85f0e6fdd661b.tar.bz2 |
Closes #19434: fix copy-paste error in MIMENonMultipart docstring.
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/mime/nonmultipart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/mime/nonmultipart.py b/Lib/email/mime/nonmultipart.py index fc3b9eb..e1f5196 100644 --- a/Lib/email/mime/nonmultipart.py +++ b/Lib/email/mime/nonmultipart.py @@ -12,7 +12,7 @@ from email.mime.base import MIMEBase class MIMENonMultipart(MIMEBase): - """Base class for MIME multipart/* type messages.""" + """Base class for MIME non-multipart type messages.""" def attach(self, payload): # The public API prohibits attaching multiple subparts to MIMEBase |