From: Fred Drake Date: Wed, 7 Jul 1999 13:36:59 +0000 (+0000) Subject: FTP.dir(): Fix typo in docstring. X-Git-Tag: v1.6a1~1096 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5f173bf1f215ce156805545ff20e0d764162e89;p=thirdparty%2FPython%2Fcpython.git FTP.dir(): Fix typo in docstring. --- diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 96e83dfc5605..d2ff43570042 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -339,7 +339,7 @@ class FTP: The argument is a RETR or LIST command. The callback function (2nd argument) is called for each line, with trailing CRLF stripped. This creates a new port for you. - print_lines is the default callback.''' + print_line() is the default callback.''' if not callback: callback = print_line resp = self.sendcmd('TYPE A') conn = self.transfercmd(cmd)