diff options
author | Gary Donovan <garyd203@users.noreply.github.com> | 2022-11-25 18:03:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 18:03:20 (GMT) |
commit | 5d4d83130c1538586e559a64e3a2341794da92d9 (patch) | |
tree | 911b17c7f433964dc739137159b5cc533d7a801d /Lib/email | |
parent | 85c128e34daec7625b74746e127afa25888ccde1 (diff) | |
download | cpython-5d4d83130c1538586e559a64e3a2341794da92d9.zip cpython-5d4d83130c1538586e559a64e3a2341794da92d9.tar.gz cpython-5d4d83130c1538586e559a64e3a2341794da92d9.tar.bz2 |
Fix typo on inline comment for email.generator (GH-98210)
Trivial change to comment - no issue or new entry necessary
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 c9b1216..885e6ba 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. |