This commit is contained in:
Alex Gaynor 2017-06-04 16:38:55 -04:00 committed by Paul Kehrer
parent 3661011e39
commit 3ff51d49aa

View file

@ -28,7 +28,7 @@ def run(*args, **kwargs):
try:
subprocess.check_output(list(args), **kwargs)
except subprocess.CalledProcessError as e:
# Reraise this with a different type so that str(e) is somethign with
# Reraise this with a different type so that str(e) is something with
# stdout in it.
raise Exception(e.cmd, e.returncode, e.output)