diff options
author | Éric Araujo <merwok@netwok.org> | 2014-03-12 07:19:33 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2014-03-12 07:19:33 (GMT) |
commit | b5099031dd3f75914e1dc6456f2eded9767e23fa (patch) | |
tree | 0651eb5fe755dbdbc3ee0848fb85a7f3dfe676fc | |
parent | 3d1134e39551cd4277538f1fa9137fdf238d07fb (diff) | |
download | cpython-b5099031dd3f75914e1dc6456f2eded9767e23fa.zip cpython-b5099031dd3f75914e1dc6456f2eded9767e23fa.tar.gz cpython-b5099031dd3f75914e1dc6456f2eded9767e23fa.tar.bz2 |
Restore missing part of error message (#4931)
-rw-r--r-- | Lib/distutils/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py index 72e3c20..fcb2060 100644 --- a/Lib/distutils/core.py +++ b/Lib/distutils/core.py @@ -156,7 +156,7 @@ def setup(**attrs): sys.stderr.write("error: %s\n" % (exc,)) raise else: - raise SystemExit, exc + raise SystemExit, "error: %s" % (exc,) except (DistutilsError, CCompilerError), msg: |