Bugfix xmldom to etree conversion

bzr revid: hda@tinyerp.com-20090821102854-j40b24alns6308is
This commit is contained in:
NCH 2009-08-21 15:58:54 +05:30 committed by HDA (OpenERP)
parent f404cafca8
commit 271fb0f723
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ class document(object):
txt = str(datas[atr['value']])
else:
txt = datas[atr['value']]
el.append(txt)
el.text = txt
else:
for el_cld in node:
parse_result_tree(el_cld, el, datas)