diff options
| author | Georg Brandl <georg@python.org> | 2014-10-02 12:35:08 +0200 | 
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2014-10-02 12:35:08 +0200 | 
| commit | 529452926b25f0461cc4a1da4ab85f0e6fdd661b (patch) | |
| tree | f8a41820f9ab514baf095160951be33825f535b4 | |
| parent | 4601df58e7d9e8901e11626122ccadab191a602b (diff) | |
| download | cpython-git-529452926b25f0461cc4a1da4ab85f0e6fdd661b.tar.gz | |
Closes #19434: fix copy-paste error in MIMENonMultipart docstring.
| -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 fc3b9eb4dc..e1f51968b5 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  | 
