[IMP] Escape 'False' when rendering value

pull/347/head
Laurent Mignon (ACSONE) 2016-11-16 14:57:14 +01:00
parent 36a3e8b20b
commit f260b0b4a3
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class Py3oParser(report_sxw):
in_stream = StringIO(tmpl_data)
out_stream = StringIO()
template = Template(in_stream, out_stream)
template = Template(in_stream, out_stream, escape_false=True)
localcontext = parser_instance.localcontext
if report_xml.py3o_is_local_fusion:
template.render(localcontext)