From: Gary Donovan Date: Fri, 25 Nov 2022 18:03:20 +0000 (+1100) Subject: Fix typo on inline comment for email.generator (GH-98210) X-Git-Tag: v3.12.0a3~99 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d4d83130c1538586e559a64e3a2341794da92d9;p=thirdparty%2FPython%2Fcpython.git Fix typo on inline comment for email.generator (GH-98210) Trivial change to comment - no issue or new entry necessary --- diff --git a/Lib/email/generator.py b/Lib/email/generator.py index c9b121624e08..885e6ba98540 100644 --- a/Lib/email/generator.py +++ b/Lib/email/generator.py @@ -170,7 +170,7 @@ class Generator: # parameter. # # The way we do this, so as to make the _handle_*() methods simpler, - # is to cache any subpart writes into a buffer. The we write the + # is to cache any subpart writes into a buffer. Then we write the # headers and the buffer contents. That way, subpart handlers can # Do The Right Thing, and can still modify the Content-Type: header if # necessary.