From aefab57bb0b047ba42df8c2416b5c87b89704966 Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Sun, 13 Apr 2025 18:54:55 +0200 Subject: [PATCH] fix: add extra debug output to jinja helper --- jinja_helper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jinja_helper.py b/jinja_helper.py index 534f5b0..88f6cba 100644 --- a/jinja_helper.py +++ b/jinja_helper.py @@ -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()