From: Benjamin Peterson Date: Sat, 4 Oct 2008 22:15:31 +0000 (+0000) Subject: fix typo X-Git-Tag: v2.7a1~2770 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9db5968cc50df6ce13045715011961e1d177d87;p=thirdparty%2FPython%2Fcpython.git fix typo --- diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst index c5eabb490a15..090e3d92e270 100644 --- a/Doc/library/ftplib.rst +++ b/Doc/library/ftplib.rst @@ -315,7 +315,7 @@ followed by ``lines`` for the text version or ``binary`` for the binary version. .. method:: FTP.quit() Send a ``QUIT`` command to the server and close the connection. This is the - "polite" way to close a connection, but it may raise an exception of the server + "polite" way to close a connection, but it may raise an exception if the server responds with an error to the ``QUIT`` command. This implies a call to the :meth:`close` method which renders the :class:`FTP` instance useless for subsequent calls (see below).