chiark / gitweb /
Add some remaining help strings
authorDaniel Martí <mvdan@mvdan.cc>
Thu, 19 Dec 2013 22:18:27 +0000 (23:18 +0100)
committerDaniel Martí <mvdan@mvdan.cc>
Thu, 19 Dec 2013 22:18:27 +0000 (23:18 +0100)
fdroidserver/checkupdates.py
fdroidserver/install.py
fdroidserver/publish.py
fdroidserver/scanner.py
fdroidserver/verify.py

index 17a6c963739d93474a2651df673d8fa0497c235c..3b59ef4e2bacdab21dc8cfebd970b03da2043b3d 100644 (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,
index 560d9979e633da5bc5fd2c337e54699b8ad7fffe..3f23a16bf09c5e54818451e8ce9f7f14a4caf1d3 100644 (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,
index d04c3a7d24adf367554b72b6a50369f553305483..85349fb1877acc38ccce757c66935b9ea216bda5 100644 (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")
index 200917c685a677f25198e45320ff96a2fae87dee..0e02ed0d0c6ed88c3e22deac7f211e6536e55298 100644 (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()
index c067fccc96292097edddfea2ed954583968abe9e..1c0c6b46fb3ca606b43f5455654c17f1ea250697 100644 (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)