Fix wrong escaping in string format

This commit is contained in:
2025-09-28 15:11:55 +02:00
parent b8d58bd20f
commit 16ad0e60cd

View File

@@ -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)