From 794cab014434dbb8dec1890ac348c1311b9e32f1 Mon Sep 17 00:00:00 2001 From: Nick Aldwin Date: Tue, 8 Jan 2013 17:02:12 -0500 Subject: [PATCH] Add less verbose config option --- overviewer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer.py b/overviewer.py index 0b0f6fe..00cea85 100755 --- a/overviewer.py +++ b/overviewer.py @@ -62,7 +62,7 @@ def main(): parser = OptionParser(usage=helptext, add_help_option=False) parser.add_option("-h", "--help", dest="help", action="store_true", help="show this help message and exit") - parser.add_option("--config", dest="config", action="store", help="Specify the config file to use.") + parser.add_option("-c", "--config", dest="config", action="store", help="Specify the config file to use.") parser.add_option("-p", "--processes", dest="procs", action="store", type="int", help="The number of local worker processes to spawn. Defaults to the number of CPU cores your computer has")