summaryrefslogtreecommitdiffstats
path: root/rpmbuild-remote.py
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-09-08 20:15:16 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-09-08 20:16:34 -0400
commit08ae242e4e3748fa7bb889dae3fa5cdaf502bc96 (patch)
tree5821ef74714154306eb854834cc038a7837be6ea /rpmbuild-remote.py
parent2b34a5f18b5479ee053ab0bcf0b8f089a4cf43ee (diff)
downloadrpmbuild-remote-08ae242e4e3748fa7bb889dae3fa5cdaf502bc96.tar.gz
rpmbuild-remote-08ae242e4e3748fa7bb889dae3fa5cdaf502bc96.tar.xz
rpmbuild-remote-08ae242e4e3748fa7bb889dae3fa5cdaf502bc96.zip
Option description cleanup
Diffstat (limited to 'rpmbuild-remote.py')
-rw-r--r--rpmbuild-remote.py8
1 files changed, 4 insertions, 4 deletions
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():