configurationengine/source/scripts/configroot2flat.py
changeset 9 63964d875993
parent 4 0951727b8815
--- a/configurationengine/source/scripts/configroot2flat.py	Tue Oct 26 10:43:50 2010 +0100
+++ b/configurationengine/source/scripts/configroot2flat.py	Sat Nov 06 16:59:14 2010 +0200
@@ -19,9 +19,11 @@
 
 from optparse import OptionParser
 from cone.action import configroot2flat
+import cone_common
 
 def get_parser():
     parser = OptionParser()
+    parser.add_options(cone_common.COMMON_OPTIONS)
     parser.add_option("-c", "--configuration",
                         dest="configs",
                         action="append",
@@ -59,6 +61,7 @@
     """
     parser = get_parser()
     options, _ = parser.parse_args()
+    cone_common.handle_common_options(options)
     
     action = configroot2flat.ConeConfigroot2FlatAction(
         project          = options.project,