Kaydet (Commit) 9d46b9ce authored tarafından Greg Ward's avatar Greg Ward

When emitting a command-line error message, *say* it's an error.

üst ad83f040
......@@ -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:
......
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