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 6fb0934..f59c184 100644 --- a/Doc/library/smtplib.rst +++ b/Doc/library/smtplib.rst @@ -41,7 +41,7 @@ Protocol) and :rfc:`1869` (SMTP Service Extensions). the OS default behavior will be used. For normal use, you should only require the initialization/connect, - :meth:`sendmail`, and :meth:`~smtplib.quit` methods. + :meth:`sendmail`, and :meth:`SMTP.quit` methods. An example is included below. The :class:`SMTP` class supports the :keyword:`with` statement. When used |