diff options
Diffstat (limited to 'ironic/common/utils.py')
-rw-r--r-- | ironic/common/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ironic/common/utils.py b/ironic/common/utils.py index 390fe0305..a25753106 100644 --- a/ironic/common/utils.py +++ b/ironic/common/utils.py @@ -488,9 +488,9 @@ def render_template(template, params, is_file=True, strict=False): # and still complains with B701 for that line # NOTE(pas-ha) not using default_for_string=False as we set the name # of the template above for strings too. - env = jinja2.Environment( + env = jinja2.Environment( # nosec B701 loader=loader, - autoescape=jinja2.select_autoescape(), # nosec B701 + autoescape=jinja2.select_autoescape(), undefined=jinja2.StrictUndefined if strict else jinja2.Undefined ) tmpl = env.get_template(tmpl_name) |