Skip to content

Commit

Permalink
build: use empty jinja autoescape instead of None
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhendrickson13 committed Sep 20, 2024
1 parent 1234e55 commit a7e638a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/make_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def generate_makefile(self):

# Set Jijna2 environment and variables
j2_env = jinja2.Environment(
autoescape=jinja2.select_autoescape(None),
autoescape=jinja2.select_autoescape([]),
loader=jinja2.FileSystemLoader(searchpath=str(template_dir)),
)
j2_env.filters["dirname"] = self.dirname
Expand Down

0 comments on commit a7e638a

Please sign in to comment.