fix: add extra debug output to jinja helper

This commit is contained in:
Yannik Schmidt
2025-04-13 18:54:55 +02:00
parent d3840c216c
commit aefab57bb0

View File

@@ -11,6 +11,7 @@ def render_path(path, install_location, game_directory,):
result_path = path[:-len(".j2")]
# prepare template #
print("JINJA-> cwd: ", os.getcwd(), "path:", path)
input_content = ""
with open(path, encoding="utf-16") as f:
input_content = f.read()