]> granicus.if.org Git - python/commitdiff
bpo-38244: [Documentation] Fix unreliable link to sever in ftplib.rst (#16319)
authorPrateek Nayak <45075669+Kriyszig@users.noreply.github.com>
Thu, 26 Sep 2019 09:22:31 +0000 (14:52 +0530)
committerGiampaolo Rodola <g.rodola@gmail.com>
Thu, 26 Sep 2019 09:22:31 +0000 (17:22 +0800)
Doc/library/ftplib.rst

index db0212367340d9bd56004594a011cfbb554b167f..79a0286fb544d4c2a73a1b78cebd8cc8fba87156 100644 (file)
@@ -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