I had this problem with an specific database. I think that the origin of the
problem were some translation files uploaded with a different encoding.
this is how I solved it for that case.. I opened the file tools/translate.py
and replaced every instance of lines like the following:
res.append(val.encode("utf8"))
for this expression:
if isinstance(val, unicode):
res.append(val.encode("utf8"))
else:
res.append(val)
This solved my problem there.
regards,
Pedro
_______________________________________________
Tinyerp-users mailing list
http://tiny.be/mailman/listinfo/tinyerp-users