[FIX] Encoding error

bzr revid: stephane@tinyerp.com-20090119100846-x4fp20cax93a4zf8
This commit is contained in:
Stephane Wirtel 2009-01-19 11:08:46 +01:00
parent e0e1fe6b2b
commit 7e4e42c34a
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ class orm_template(object):
break
i += 1
if i == len(f):
data[fpos] = str(r or '')
data[fpos] = tools.ustr(r or '')
return [data] + lines
def export_data(self, cr, uid, ids, fields, context=None):