From d68c792c41c2def685ecbe8683f3a94f94701f90 Mon Sep 17 00:00:00 2001 From: Andrew Chin Date: Thu, 26 Dec 2013 23:45:07 -0500 Subject: [PATCH] Allow --genpoi to use -c to specify a config file Closes #1033 --- overviewer_core/aux_files/genPOI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/aux_files/genPOI.py b/overviewer_core/aux_files/genPOI.py index b5cf8f8..5fa4b00 100755 --- a/overviewer_core/aux_files/genPOI.py +++ b/overviewer_core/aux_files/genPOI.py @@ -192,7 +192,7 @@ def main(): logger.configure() parser = OptionParser(usage=helptext) - 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("--quiet", dest="quiet", action="count", help="Reduce logging output") parser.add_option("--skip-scan", dest="skipscan", action="store_true", help="Skip scanning for entities when using GenPOI")