summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xTools/scripts/ftpmirror.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Tools/scripts/ftpmirror.py b/Tools/scripts/ftpmirror.py
index 0886af6..2e3b215 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: