This commit is contained in:
Dr-Blank 2024-04-11 14:17:24 -04:00
parent 6a27a8de3c
commit dc0b46d0cb
No known key found for this signature in database
GPG key ID: 7452CC63F210A266

View file

@ -938,7 +938,7 @@ def command_output(
if proc.returncode:
raise subprocess.CalledProcessError(
returncode=proc.returncode,
cmd=" ".join(cmd),
cmd=" ".join(map(str, cmd)),
output=stdout + stderr,
)
return CommandOutput(stdout, stderr)