diff --git a/tools/ftp-upload-binaries.py b/tools/ftp-upload-binaries.py index 0b994baf4b..d5774761d0 100644 --- a/tools/ftp-upload-binaries.py +++ b/tools/ftp-upload-binaries.py @@ -12,7 +12,7 @@ def main(): (options, args) = parser.parse_args() if (options.url and options.local and options.remote and options.user and options.password): - ftp = FTP(options.url) + ftp = FTP(options.url, timeout=100) ftp.login(options.user, options.password) with open(options.local, 'r') as f: ftp.storbinary('STOR %s' % options.remote, f)