diff options
author | Georg Brandl <georg@python.org> | 2010-05-10 21:46:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-05-10 21:46:50 (GMT) |
commit | 0ddc30b7f99c87611612d812f64d1fa8086c5f98 (patch) | |
tree | f2c44bf6f17d83377de9485e2a08f5ad24ca95b1 /Doc | |
parent | c63019578497e8d024c25c766f1cb668af6c9992 (diff) | |
download | cpython-0ddc30b7f99c87611612d812f64d1fa8086c5f98.zip cpython-0ddc30b7f99c87611612d812f64d1fa8086c5f98.tar.gz cpython-0ddc30b7f99c87611612d812f64d1fa8086c5f98.tar.bz2 |
Fix reference direction.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ftplib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst index 3765d9e..27cc444 100644 --- a/Doc/library/ftplib.rst +++ b/Doc/library/ftplib.rst @@ -110,7 +110,7 @@ The module defines the following items: The set of all exceptions (as a tuple) that methods of :class:`FTP` instances may raise as a result of problems with the FTP connection (as opposed to programming errors made by the caller). This set includes the - four exceptions listed below as well as :exc:`socket.error` and + four exceptions listed above as well as :exc:`socket.error` and :exc:`IOError`. |