Skip to content

Commit

Permalink
fix jinja template loader
Browse files Browse the repository at this point in the history
  • Loading branch information
corpulent committed Mar 26, 2024
1 parent f65b512 commit 821b259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llmt/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, root_path, input_file: str, output_file: str):
self.env = jinja2.Environment(
trim_blocks=True,
lstrip_blocks=True,
loader=jinja2.FileSystemLoader(searchpath=os.path.join(root_path)),
loader=jinja2.FileSystemLoader(searchpath=os.path.join(root_path, "llmt")),
)

def init(self):
Expand Down

0 comments on commit 821b259

Please sign in to comment.