From 16ad0e60cd63a70599c5d752a2472952456ead06 Mon Sep 17 00:00:00 2001 From: Ettore Dreucci Date: Sun, 28 Sep 2025 15:11:55 +0200 Subject: [PATCH] Fix wrong escaping in string format --- src/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git.py b/src/git.py index 2781b5b..bbe6faf 100644 --- a/src/git.py +++ b/src/git.py @@ -8,7 +8,7 @@ from config import * def run_git_cmd(args, check=True, capture_output=False): cmd = ["git", "-C", GIT_REPO_DIR] + args - logging.debug(f"Running git: {" ".join(cmd)}") + logging.debug(f"Running git: {' '.join(cmd)}") return subprocess.run(cmd, check=check, capture_output=capture_output, text=True)