diff options
Diffstat (limited to 'Lib/ftplib.py')
-rw-r--r-- | Lib/ftplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py index ec7d479..024a0fa 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -317,7 +317,7 @@ class FTP: raise error_reply, resp return resp - def retrbinary(self, cmd, callback, blocksize): + def retrbinary(self, cmd, callback, blocksize=8192): '''Retrieve data in binary mode. The argument is a RETR command. The callback function is called for each block. |