add a new child for each option instead of always rewrite over the same

This commit is contained in:
Yann Leboulanger 2005-04-27 22:14:28 +00:00
parent 9fd9b98a79
commit cd771c22ef
1 changed files with 1 additions and 2 deletions

View File

@ -721,7 +721,6 @@ class Connection:
instructions = data.getInstructions()
if instructions:
info['instructions'] = instructions
print info
return info
def register_agent(self, agent, info):
@ -874,7 +873,7 @@ class Connection:
if config[i]['type'] == 'fixed':
i += 1
continue
tag = x.setTag('field')
tag = x.addChild('field')
if config[i].has_key('var'):
tag.setAttr('var', config[i]['var'])
if config[i].has_key('values'):