(original) (raw)

changeset: 89597:0f1237b61f58 branch: 2.7 user: Éric Araujo merwok@netwok.org date: Wed Mar 12 03:19:33 2014 -0400 files: Lib/distutils/core.py description: Restore missing part of error message (#4931) diff -r a865f6fb82b4 -r 0f1237b61f58 Lib/distutils/core.py --- a/Lib/distutils/core.py Wed Mar 12 03:14:48 2014 -0400 +++ b/Lib/distutils/core.py Wed Mar 12 03:19:33 2014 -0400 @@ -156,7 +156,7 @@ sys.stderr.write("error: %s\n" % (exc,)) raise else: - raise SystemExit, exc + raise SystemExit, "error: %s" % (exc,) except (DistutilsError, CCompilerError), msg: /merwok@netwok.org