diff options
Diffstat (limited to 'Doc/library/smtplib.rst')
-rw-r--r-- | Doc/library/smtplib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst index f59c184..2c3a5f0 100644 --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -46,7 +46,7 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions). The :class:`SMTP` class supports the :keyword:`with` statement. When used like this, the SMTP ``QUIT`` command is issued automatically when the - :keyword:`with` statement exits. E.g.:: + :keyword:`!with` statement exits. E.g.:: >>> from smtplib import SMTP >>> with SMTP("domain.org") as smtp: |