Skip to content

Commit

Permalink
chore: [autoapprove] update readme_gen.py to include autoescape True (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed May 5, 2022
1 parent d129e25 commit 6b4d5a6
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -28,7 +28,10 @@ import yaml
jinja_env = jinja2.Environment(
trim_blocks=True,
loader=jinja2.FileSystemLoader(
os.path.abspath(os.path.join(os.path.dirname(__file__), 'templates'))))
os.path.abspath(os.path.join(os.path.dirname(__file__), "templates"))
),
autoescape=True,
)

README_TMPL = jinja_env.get_template('README.tmpl.rst')

Expand Down

0 comments on commit 6b4d5a6

Please sign in to comment.