Commit a7414571 authored by Prateek Nayak's avatar Prateek Nayak Committed by Giampaolo Rodola

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

parent 1ad7be2f
...@@ -22,7 +22,7 @@ as mirroring other FTP servers. It is also used by the module ...@@ -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:: Here's a sample session using the :mod:`ftplib` module::
>>> from ftplib import FTP >>> 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@ >>> ftp.login() # user anonymous, passwd anonymous@
'230 Login successful.' '230 Login successful.'
>>> ftp.cwd('debian') # change into "debian" directory >>> ftp.cwd('debian') # change into "debian" directory
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment