Merged revisions 75528 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r75528 | r.david.murray | 2009-10-19 13:53:58 -0400 (Mon, 19 Oct 2009) | 4 lines

  Clarify error report message, and don't recommend running in verbose
  mode for more information if we are already running in verbose mode.
........
This commit is contained in:
R. David Murray 2009-10-28 02:22:08 +00:00
parent 25bdfac975
commit 9e28ca707b
1 changed files with 3 additions and 1 deletions

View File

@ -703,7 +703,9 @@ def _run_suite(suite):
elif len(result.failures) == 1 and not result.errors: elif len(result.failures) == 1 and not result.errors:
err = result.failures[0][1] err = result.failures[0][1]
else: else:
err = "errors occurred; run in verbose mode for details" err = "multiple errors occurred"
if not verbose:
err += "; run in verbose mode for details"
raise TestFailed(err) raise TestFailed(err)