diff options
author | 2016-09-12 07:39:23 +0000 | |
---|---|---|
committer | 2016-09-12 07:39:23 +0000 | |
commit | 3065cdbb3d3b0c69c484e4d2b4c295d8babe1e2c (patch) | |
tree | c12bfa5abe8799188b12b4c5aa08ae9214f46aec /utils/test/reporting/functest/reporting-status.py | |
parent | f30916f66722ca0756855e7cbf70900cc99dd603 (diff) | |
parent | 4b575b7090cf08bf4dd3bd5ea733ccfa36100276 (diff) |
Merge "Fix security issues reported by the security audit"
Diffstat (limited to 'utils/test/reporting/functest/reporting-status.py')
-rwxr-xr-x | utils/test/reporting/functest/reporting-status.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/test/reporting/functest/reporting-status.py b/utils/test/reporting/functest/reporting-status.py index 7c943d8b3..e9e167d16 100755 --- a/utils/test/reporting/functest/reporting-status.py +++ b/utils/test/reporting/functest/reporting-status.py @@ -195,7 +195,7 @@ for version in conf.versions: logger.info("--------------------------") templateLoader = jinja2.FileSystemLoader(conf.REPORTING_PATH) - templateEnv = jinja2.Environment(loader=templateLoader) + templateEnv = jinja2.Environment(loader=templateLoader, autoescape=True) TEMPLATE_FILE = "/template/index-status-tmpl.html" template = templateEnv.get_template(TEMPLATE_FILE) |