From 78e90f425c3403fc0c18a69cb08bc635c6613716 Mon Sep 17 00:00:00 2001 From: jo Date: Wed, 11 Dec 2024 18:08:56 +0100 Subject: [PATCH] fix: log message was not rendered --- codecov_cli/services/commit/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codecov_cli/services/commit/__init__.py b/codecov_cli/services/commit/__init__.py index a872e1d1..be6caf35 100644 --- a/codecov_cli/services/commit/__init__.py +++ b/codecov_cli/services/commit/__init__.py @@ -65,7 +65,7 @@ def send_commit_data( f"Branch `{branch}` is protected but no token was provided\nFor information on Codecov upload tokens, see https://docs.codecov.com/docs/codecov-tokens" ) else: - logger.info("Using token to create a commit for protected branch `{branch}`") + logger.info(f"Using token to create a commit for protected branch `{branch}`") headers = get_token_header(token)