Skip to content
Snippets Groups Projects
Commit 01480896 authored by Markus Holzer's avatar Markus Holzer
Browse files

Merge branch 'jinja2' into 'master'

Jinja2 3.0 compatibility

See merge request !453
parents 15593580 55b71237
No related branches found
No related tags found
No related merge requests found
......@@ -108,8 +108,8 @@ class AbstractConditionNode(AbstractKernelSelectionNode):
true_branch_code = self.branch_true.get_code(**kwargs)
false_branch_code = self.branch_false.get_code(**kwargs)
true_branch_code = do_indent(true_branch_code, width=4, indentfirst=True)
false_branch_code = do_indent(false_branch_code, width=4, indentfirst=True)
true_branch_code = do_indent(true_branch_code, width=4, first=True)
false_branch_code = do_indent(false_branch_code, width=4, first=True)
code = f"if({self.condition_text}) {{\n"
code += true_branch_code
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment