diff options
author | Prateek Nayak <45075669+Kriyszig@users.noreply.github.com> | 2019-09-26 09:22:31 (GMT) |
---|---|---|
committer | Giampaolo Rodola <g.rodola@gmail.com> | 2019-09-26 09:22:31 (GMT) |
commit | a7414571a113815033fdc9f7abb3f5a24e44c472 (patch) | |
tree | d6ca22a9d29ab6a989ef81389f468f5e9bbb27ff /Doc/library | |
parent | 1ad7be2f16cc9955f271f57a5089602bb41eee85 (diff) | |
download | cpython-a7414571a113815033fdc9f7abb3f5a24e44c472.zip cpython-a7414571a113815033fdc9f7abb3f5a24e44c472.tar.gz cpython-a7414571a113815033fdc9f7abb3f5a24e44c472.tar.bz2 |
bpo-38244: [Documentation] Fix unreliable link to sever in ftplib.rst (#16319)
Diffstat (limited to 'Doc/library')
-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 db02123..79a0286 100644 --- a/Doc/library/ftplib.rst +++ b/Doc/library/ftplib.rst @@ -22,7 +22,7 @@ as mirroring other FTP servers. It is also used by the module Here's a sample session using the :mod:`ftplib` module:: >>> from ftplib import FTP - >>> ftp = FTP('ftp.debian.org') # connect to host, default port + >>> ftp = FTP('ftp.us.debian.org') # connect to host, default port >>> ftp.login() # user anonymous, passwd anonymous@ '230 Login successful.' >>> ftp.cwd('debian') # change into "debian" directory |