0

Allow --genpoi to use -c to specify a config file

Closes #1033
This commit is contained in:
Andrew Chin
2013-12-26 23:45:07 -05:00
parent 329b299664
commit d68c792c41

View File

@@ -192,7 +192,7 @@ def main():
logger.configure() logger.configure()
parser = OptionParser(usage=helptext) 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("--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") parser.add_option("--skip-scan", dest="skipscan", action="store_true", help="Skip scanning for entities when using GenPOI")