From b5895ccba050fa335bb7a6ac401b52a071decb48 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Fri, 19 Dec 2025 14:22:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(summary)=20fix=20missing=20f-strin?= =?UTF-8?q?g?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Spotted by code rabbit. Missing F-string was leading to an unexpected behavior. --- src/summary/summary/core/llm_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/summary/summary/core/llm_service.py b/src/summary/summary/core/llm_service.py index a3b04f54..d26d7ad8 100644 --- a/src/summary/summary/core/llm_service.py +++ b/src/summary/summary/core/llm_service.py @@ -141,4 +141,4 @@ class LLMService: except Exception as e: self._logger.exception("LLM call failed: %s", e) - raise LLMException("LLM call failed: {e}") from e + raise LLMException(f"LLM call failed: {e}") from e