https://github.com/python/cpython/commit/422855ad21f09b82c0bfa891dfb8fb48182c6d2b commit: 422855ad21f09b82c0bfa891dfb8fb48182c6d2b branch: main author: mirelagrigoras <[email protected]> committer: encukou <[email protected]> date: 2024-07-13T16:16:26+02:00 summary:
gh-120823: Fix doc for ftplib.FTP.retrbinary() (GH-121697) Co-authored-by: Mirela Andreea GRIGORAS <[email protected]> files: M Doc/library/ftplib.rst diff --git a/Doc/library/ftplib.rst b/Doc/library/ftplib.rst index 8c39dc00f5db02..bb15322067245e 100644 --- a/Doc/library/ftplib.rst +++ b/Doc/library/ftplib.rst @@ -243,7 +243,7 @@ FTP objects Retrieve a file in binary transfer mode. :param str cmd: - An appropriate ``STOR`` command: :samp:`"STOR {filename}"`. + An appropriate ``RETR`` command: :samp:`"RETR {filename}"`. :param callback: A single parameter callable that is called _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
