Skip to content

Commit

Permalink
pythongh-111165: Add missed "support." prefix for "verbose"
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiy-storchaka committed Oct 25, 2023
1 parent 9da98c0 commit 510d1b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/libregrtest/single.py
Expand Up @@ -70,7 +70,7 @@ def _run_suite(suite):
err = result.failures[0][1]
else:
err = "multiple errors occurred"
if not verbose: err += "; run in verbose mode for details"
if not support.verbose: err += "; run in verbose mode for details"
errors = [(str(tc), exc_str) for tc, exc_str in result.errors]
failures = [(str(tc), exc_str) for tc, exc_str in result.failures]
raise support.TestFailedWithDetails(err, errors, failures, stats=stats)
Expand Down

0 comments on commit 510d1b9

Please sign in to comment.