Codebase list ctdconverter / 50f3375
Fix bug in former commit. Clemens BlanK 7 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
812812 # if default value is present in select list, no need to check for whitespaces
813813 if is_selection_parameter(param) and param.default in param.restrictions.choices:
814814 command += "#if " + actual_parameter + ":\n"
815 command += ' %s\n' % param_cli_name
815 command += ' %s %s\n' % (param_cli_name, actual_parameter)
816816 command += "#end if\n"
817817 else:
818818 command += "#if " + actual_parameter + ":\n"