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)