Skip to content

Commit

Permalink
[3.12] gh-111165: Add missed "support." prefix for "verbose" (GH-111327
Browse files Browse the repository at this point in the history
…) (GH-111328)

(cherry picked from commit a498192)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
  • Loading branch information
miss-islington and serhiy-storchaka committed Oct 25, 2023
1 parent ed05bf6 commit 3641dae
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 3641dae

Please sign in to comment.