[Python-checkins] bpo-38244: [Documentation] Fix unreliable link to sever in ftplib.rst (#16319)

Giampaolo Rodola webhook-mailer at python.org
Thu Sep 26 05:22:37 EDT 2019


https://github.com/python/cpython/commit/a7414571a113815033fdc9f7abb3f5a24e44c472
commit: a7414571a113815033fdc9f7abb3f5a24e44c472
branch: master
author: Prateek Nayak <45075669+Kriyszig at users.noreply.github.com>
committer: Giampaolo Rodola <g.rodola at gmail.com>
date: 2019-09-26T17:22:31+08:00
summary:

bpo-38244: [Documentation] Fix unreliable link to sever in ftplib.rst (#16319)

files:
M Doc/library/ftplib.rst

diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst
index db0212367340..79a0286fb544 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



More information about the Python-checkins mailing list