Fix wrong escaping in string format
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user