Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
tdas committed Aug 18, 2023
1 parent 054db7a commit 64d38fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/generate_api_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def run_cmd(cmd, throw_on_error=True, env=None, stream_output=False, **kwargs):
exit_code = child.wait()
if throw_on_error and exit_code != 0:
raise Exception(
"Non-zero exitcode: cmd%s\n\nSTDOUT:\n%s\n\nSTDERR:%s" %
"Non-zero exitcode: %s\n\nSTDOUT:\n%s\n\nSTDERR:%s" %
(exit_code, stdout, stderr))
return (exit_code, stdout, stderr)

Expand Down

0 comments on commit 64d38fb

Please sign in to comment.