We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac344c6 commit 6734d25Copy full SHA for 6734d25
mkdocs_git_authors_plugin/git/command.py
@@ -69,7 +69,8 @@ def run(self) -> int:
69
p.check_returncode()
70
except subprocess.CalledProcessError:
71
msg = ["GitCommand error:"]
72
- msg.append(f'Command "{' '.join(args)}" failed')
+ joined_args = " ".join(args)
73
+ msg.append(f'Command "{joined_args}" failed')
74
msg.append(f"Return code: {p.returncode}")
75
msg.append("Output:")
76
msg.append(p.stdout.decode("utf-8"))
0 commit comments