Commit b5099031 authored by Éric Araujo's avatar Éric Araujo

Restore missing part of error message (#4931)

parent 3d1134e3
...@@ -156,7 +156,7 @@ def setup(**attrs): ...@@ -156,7 +156,7 @@ def setup(**attrs):
sys.stderr.write("error: %s\n" % (exc,)) sys.stderr.write("error: %s\n" % (exc,))
raise raise
else: else:
raise SystemExit, exc raise SystemExit, "error: %s" % (exc,)
except (DistutilsError, except (DistutilsError,
CCompilerError), msg: CCompilerError), msg:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment