Bugfix in printscreen encoding

bzr revid: fp@tinyerp.com-165233290e304be4e6472f60de3fcaeae06b3483
This commit is contained in:
Fabien Pinckaers 2007-04-21 11:50:05 +00:00
parent d8176652fc
commit f6b9954774
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class report_printscreen_list(report_int):
return result
def _parse_string(self, view):
dom = minidom.parseString(view)
dom = minidom.parseString(view.encode('utf-8'))
return self._parse_node(dom)
def create(self, cr, uid, ids, datas, context={}):