From 13fb78f13aa353e0bc8fb2362fe6dcadfac2a27f Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 9 Sep 2009 12:59:06 -0400 Subject: Fix default port number --- rpmbuild-remote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py index 7189539..057a170 100755 --- a/rpmbuild-remote.py +++ b/rpmbuild-remote.py @@ -44,8 +44,8 @@ def get_parser(): help="The hostname/IP of the remote system") parser.add_option("-p", "--port", action="store", type="int", dest="port", - default=21, - help="The port to use on the remote system [Default: 21]") + default=22, + help="The port to use on the remote system [Default: 22]") parser.add_option("-d", "--dest", action="store", type="string", dest="dest", default=os.path.join(home, "rpmbuild-remote"), -- cgit