From 08ae242e4e3748fa7bb889dae3fa5cdaf502bc96 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 8 Sep 2009 20:15:16 -0400 Subject: Option description cleanup --- rpmbuild-remote.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rpmbuild-remote.py') diff --git a/rpmbuild-remote.py b/rpmbuild-remote.py index 43c9f6c..e98ea37 100644 --- a/rpmbuild-remote.py +++ b/rpmbuild-remote.py @@ -27,7 +27,7 @@ def get_parser(): parser.set_conflict_handler("resolve") parser.add_option("-c", "--config", action="store", type="string", dest="config", - default=os.path.join(home,".rpmbuild-remote"), + default=os.path.join(home, ".rpmbuild-remote"), help="Configuration file to use for the build. " "[Default: ~/.rpmbuild-remote") parser.add_option("-s", "--system", @@ -43,7 +43,7 @@ def get_parser(): parser.add_option("-p", "--port", action="store", type="int", dest="port", default=21, - help="The port to use on the remote system [Default: 21") + help="The port to use on the remote system [Default: 21]") parser.add_option("-d", "--dest", action="store", type="string", dest="dest", default=os.path.join(home, "rpmbuild-remote"), @@ -52,8 +52,8 @@ def get_parser(): parser.add_option("-m", "--mock", action="store", type="string", dest="mock", default="", - help="Use mock (only applies to SRPM files) [Default: No mock " - "builds (uses rpmbuild --rebuild otherwise)]") + help="Mock configuration to use (only applies to SRPM files) " + "[Default: No mock builds (uses rpmbuild --rebuild otherwise)]") return parser def main(): -- cgit