Skip to content

Commit b740945

Browse files
committed
[IMP] Escape 'False' when rendering value
1 parent 833fd47 commit b740945

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

report_py3o/py3o_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def create_single_pdf(self, cr, uid, ids, data, report_xml, context=None):
148148

149149
in_stream = StringIO(tmpl_data)
150150
out_stream = StringIO()
151-
template = Template(in_stream, out_stream)
151+
template = Template(in_stream, out_stream, escape_false=True)
152152
localcontext = parser_instance.localcontext
153153
if report_xml.py3o_is_local_fusion:
154154
template.render(localcontext)

0 commit comments

Comments
 (0)