summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/distutils/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py
index 13bf9c7..fd5ba90 100644
--- a/Lib/distutils/core.py
+++ b/Lib/distutils/core.py
@@ -88,7 +88,7 @@ def setup (**attrs):
ok = dist.parse_command_line (sys.argv[1:])
except DistutilsArgError, msg:
sys.stderr.write (usage + "\n")
- raise SystemExit, msg
+ raise SystemExit, "error: %s" % msg
# And finally, run all the commands found on the command line.
if ok: