Fix incorrect use of subprocess.CalledProcessError (#45890)

pull/45929/head
Dag Wieers 6 years ago committed by Matt Clay
parent 693f3219d4
commit 24dd87bd0a

@ -14,7 +14,10 @@ def main():
stdout, stderr = sphinx.communicate()
if sphinx.returncode != 0:
raise subprocess.CalledProcessError(sphinx.returncode, cmd, output=stdout, stderr=stderr)
print("Command '%s' failed with status code: %d" % (' '.join(cmd), sphinx.returncode))
print(stdout)
print(stderr)
return
with open('docs/docsite/rst_warnings', 'r') as warnings_fd:
output = warnings_fd.read().strip()

Loading…
Cancel
Save