Codebase list ctdconverter / 2f5aa66
Merge pull request #34 from blankclemens/patch-1 Fix max attribute for repeated select lists chahuistle authored 6 years ago GitHub committed 6 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
509509 rep_node.attrib["min"] = "0"
510510 # for the ITEMLISTs which have LISTITEM children we only
511511 # need one parameter as it is given as a string
512 if param.default is not None:
512 if param.default is not None and param.default is not _Null:
513513 rep_node.attrib["max"] = "1"
514514 rep_node.attrib["title"] = get_galaxy_parameter_name(param)
515515