Skip to content

Commit 6734d25

Browse files
twsltimvink
authored andcommitted
Fix string
1 parent ac344c6 commit 6734d25

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mkdocs_git_authors_plugin/git/command.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ def run(self) -> int:
6969
p.check_returncode()
7070
except subprocess.CalledProcessError:
7171
msg = ["GitCommand error:"]
72-
msg.append(f'Command "{' '.join(args)}" failed')
72+
joined_args = " ".join(args)
73+
msg.append(f'Command "{joined_args}" failed')
7374
msg.append(f"Return code: {p.returncode}")
7475
msg.append("Output:")
7576
msg.append(p.stdout.decode("utf-8"))

0 commit comments

Comments
 (0)