summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-10-04 22:15:31 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-10-04 22:15:31 (GMT)
commitf9db5968cc50df6ce13045715011961e1d177d87 (patch)
tree27f0e60b90ea4cf512d299064751f52b24622113
parenta4127173f8da2bd7474f3ae66257b97056e85c87 (diff)
downloadcpython-f9db5968cc50df6ce13045715011961e1d177d87.zip
cpython-f9db5968cc50df6ce13045715011961e1d177d87.tar.gz
cpython-f9db5968cc50df6ce13045715011961e1d177d87.tar.bz2
fix typo
-rw-r--r--Doc/library/ftplib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst
index c5eabb4..090e3d9 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).