# HG changeset patch # User Sylvain Thénault # Date 1266408755 -3600 # Node ID 7bf205b9a845f43249a20e0f5d2817dbad5552ce # Parent 169ca2904322d660c990ca607cabd8ba09330ceb when creating an instance, ask for cubes specific options properly (fix #607349) diff -r 169ca2904322 -r 7bf205b9a845 cwctl.py --- a/cwctl.py Wed Feb 17 13:11:30 2010 +0100 +++ b/cwctl.py Wed Feb 17 13:12:35 2010 +0100 @@ -303,6 +303,12 @@ # configuration'specific stuff print helper.bootstrap(cubes, self.config.config_level) + # input for cubes specific options + for section in set(sect.lower() for sect, opt, optdict in config.all_options() + if optdict.get('inputlevel') <= self.config.config_level): + if section not in ('main', 'email', 'pyro'): + print '\n' + underline_title('%s options' % section) + config.input_config(section, self.config.config_level) # write down configuration config.save() self._handle_win32(config, appid)