minor update

This commit is contained in:
Miroslav Stampar 2010-09-16 10:23:51 +00:00
parent 6259114c02
commit 4fd7db52dd

View File

@ -424,6 +424,9 @@ def cmdLineParser():
# Miscellaneous options
miscellaneous = OptionGroup(parser, "Miscellaneous")
miscellaneous.add_option("-o", dest="optimize", action="store_true",
help="General optimization switch")
miscellaneous.add_option("-x", dest="xmlFile",
help="Dump the data into an XML file")
@ -467,9 +470,6 @@ def cmdLineParser():
parser.add_option("--null-connection", dest="useNullConnection", action="store_true",
help=SUPPRESS_HELP)
parser.add_option("-o", dest="optimize", action="store_true",
help=SUPPRESS_HELP)
parser.add_option("--smoke-test", dest="smokeTest", action="store_true",
help=SUPPRESS_HELP)