summaryrefslogtreecommitdiff
path: root/Doc/library/ftplib.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-10-11 00:49:57 +0000
committerBenjamin Peterson <benjamin@python.org>2008-10-11 00:49:57 +0000
commit0daf79bd4d6399f59c35a384a4c4f37e0856a556 (patch)
tree9563c809ca371098e874209afc64fd0b37c3200a /Doc/library/ftplib.rst
parent5783bdd10d703b76fb7aa493f20c53065467f698 (diff)
downloadcpython-0daf79bd4d6399f59c35a384a4c4f37e0856a556.tar.gz
merge from trunk
Diffstat (limited to 'Doc/library/ftplib.rst')
-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 d4f8888ec7..b543294d37 100644
--- a/Doc/library/ftplib.rst
+++ b/Doc/library/ftplib.rst
@@ -299,7 +299,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).