From 4fd7db52dd886a4d8eb0550cdada4de952869d27 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 16 Sep 2010 10:23:51 +0000 Subject: [PATCH] minor update --- lib/parse/cmdline.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/parse/cmdline.py b/lib/parse/cmdline.py index 3092a7b8c..f7d698ec2 100644 --- a/lib/parse/cmdline.py +++ b/lib/parse/cmdline.py @@ -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)