diff options
author | Éric Araujo <merwok@netwok.org> | 2011-03-20 17:30:37 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-03-20 17:30:37 (GMT) |
commit | 09eb980e3ee0d682662ec130ed991daccb7aab97 (patch) | |
tree | 44ce04639234cb6b6545381ecd3eda2f398c659a /Doc/library | |
parent | 8189ab85e3b53eed158998deb9d0fc15b83b70b2 (diff) | |
download | cpython-09eb980e3ee0d682662ec130ed991daccb7aab97.zip cpython-09eb980e3ee0d682662ec130ed991daccb7aab97.tar.gz cpython-09eb980e3ee0d682662ec130ed991daccb7aab97.tar.bz2 |
Fix typo in class name
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/urllib.request.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index b617df4..fe61030 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -1245,7 +1245,7 @@ The following example uses no proxies at all, overriding environment settings:: you try to fetch a file whose read permissions make it inaccessible; the FTP code will try to read it, fail with a 550 error, and then perform a directory listing for the unreadable file. If fine-grained control is needed, consider - using the :mod:`ftplib` module, subclassing :class:`FancyURLOpener`, or changing + using the :mod:`ftplib` module, subclassing :class:`FancyURLopener`, or changing *_urlopener* to meet your needs. |