From f65e761f2dd38b9602241a5b229029b4fc6508b0 Mon Sep 17 00:00:00 2001 From: Marcus Burghardt Date: Tue, 14 Jan 2025 15:07:49 +0100 Subject: [PATCH] Remove unnecessary print from development phase Signed-off-by: Marcus Burghardt --- ssg/jinja.py | 1 - 1 file changed, 1 deletion(-) diff --git a/ssg/jinja.py b/ssg/jinja.py index f06593cc692..17034cebc2c 100644 --- a/ssg/jinja.py +++ b/ssg/jinja.py @@ -231,7 +231,6 @@ def _load_macros_from_directory(macros_directory: str, substitutions_dict: dict) macros_file = os.path.join(macros_directory, filename) update_substitutions_dict(macros_file, substitutions_dict) except Exception as exc: - print(macros_directory) msg = ("Error extracting macro definitions from '{1}': {0}" .format(str(exc), filename)) raise RuntimeError(msg)