From a5f8c42268dd2095969a8a721fa75bf2a2e37434 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Thu, 5 Dec 2002 02:43:14 +0000 Subject: [PATCH] * when given, port should be converted to int * when connecting, if the port is non-standard, display it as well --- Tools/scripts/ftpmirror.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Tools/scripts/ftpmirror.py b/Tools/scripts/ftpmirror.py index 0886af62a81..2e3b215835c 100755 --- a/Tools/scripts/ftpmirror.py +++ b/Tools/scripts/ftpmirror.py @@ -55,6 +55,7 @@ def main(): port = 0 if ':' in host: host, port = host.split(':', 1) + port = int(port) try: auth = netrc.netrc().authenticators(host) if auth is not None: @@ -81,7 +82,8 @@ def main(): if args[3:]: usage('too many arguments') # f = ftplib.FTP() - if verbose: print 'Connecting to %s...' % `host` + if verbose: print "Connecting to '%s%s'..." % (host, + (port and ":%d"%port or "")) f.connect(host,port) if not nologin: if verbose: