upgrade
This commit is contained in:
parent
a1277bbbc7
commit
56d0a610ff
|
@ -139,7 +139,7 @@ class RougailUpgrade:
|
||||||
for name in choices:
|
for name in choices:
|
||||||
choice = SubElement(variable, 'choice')
|
choice = SubElement(variable, 'choice')
|
||||||
choice.text = name
|
choice.text = name
|
||||||
if not has_value:
|
if not has_value and choices[0]['type'] != 'variable':
|
||||||
value = SubElement(variable, 'value')
|
value = SubElement(variable, 'value')
|
||||||
value.text = choices[0]
|
value.text = choices[0]
|
||||||
variable.attrib['mandatory'] = 'True'
|
variable.attrib['mandatory'] = 'True'
|
||||||
|
@ -235,7 +235,7 @@ class RougailUpgrade:
|
||||||
function.append(param)
|
function.append(param)
|
||||||
else:
|
else:
|
||||||
choice = SubElement(target, 'choice')
|
choice = SubElement(target, 'choice')
|
||||||
if first_choice is None:
|
if first_choice is None and ('type' not in param.attrib or param.attrib['type'] != 'variable'):
|
||||||
first_choice = choice
|
first_choice = choice
|
||||||
choice.text = param.text
|
choice.text = param.text
|
||||||
if 'type' not in param.attrib and param.text is None:
|
if 'type' not in param.attrib and param.text is None:
|
||||||
|
|
Loading…
Reference in New Issue