1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-08-15 19:00:11 +02:00

Add some remaining help strings

This commit is contained in:
Daniel Martí 2013-12-19 23:18:27 +01:00
parent c4236ba761
commit 8f3a2d4355
5 changed files with 3 additions and 8 deletions

View File

@ -277,7 +277,7 @@ def main():
global config, options
# Parse command line...
parser = OptionParser()
parser = OptionParser(usage="Usage: %prog [options] [APPID [APPID ...]]")
parser.add_option("-v", "--verbose", action="store_true", default=False,
help="Spew out even more information than normal")
parser.add_option("--auto", action="store_true", default=False,

View File

@ -41,7 +41,7 @@ def main():
global options, config
# Parse command line...
parser = OptionParser()
parser = OptionParser(usage="Usage: %prog [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
parser.add_option("-v", "--verbose", action="store_true", default=False,
help="Spew out even more information than normal")
parser.add_option("-a", "--all", action="store_true", default=False,

View File

@ -37,7 +37,6 @@ def main():
global config, options
# Parse command line...
parser = OptionParser()
parser = OptionParser(usage="Usage: %prog [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
parser.add_option("-v", "--verbose", action="store_true", default=False,
help="Spew out even more information than normal")

View File

@ -35,8 +35,6 @@ def main():
parser = OptionParser(usage="Usage: %prog [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
parser.add_option("-v", "--verbose", action="store_true", default=False,
help="Spew out even more information than normal")
parser.add_option("-p", "--package", default=None,
help="Scan only the specified package")
parser.add_option("--nosvn", action="store_true", default=False,
help="Skip svn repositories - for test purposes, because they are too slow.")
(options, args) = parser.parse_args()

View File

@ -34,11 +34,9 @@ def main():
global options, config
# Parse command line...
parser = OptionParser()
parser = OptionParser(usage="Usage: %prog [options] [APPID[:VERCODE] [APPID[:VERCODE] ...]]")
parser.add_option("-v", "--verbose", action="store_true", default=False,
help="Spew out even more information than normal")
parser.add_option("-p", "--package", default=None,
help="Verify only the specified package")
(options, args) = parser.parse_args()
config = common.read_config(options)