Skip to content

Commit 6fea61a

Browse files
[3.11] gh-111165: Add missed "support." prefix for "verbose" (GH-111327) (GH-111329)
(cherry picked from commit a498192) Co-authored-by: Serhiy Storchaka <[email protected]>
1 parent 07664c9 commit 6fea61a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/libregrtest/single.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def _run_suite(suite):
7070
err = result.failures[0][1]
7171
else:
7272
err = "multiple errors occurred"
73-
if not verbose: err += "; run in verbose mode for details"
73+
if not support.verbose: err += "; run in verbose mode for details"
7474
errors = [(str(tc), exc_str) for tc, exc_str in result.errors]
7575
failures = [(str(tc), exc_str) for tc, exc_str in result.failures]
7676
raise support.TestFailedWithDetails(err, errors, failures, stats=stats)

0 commit comments

Comments
 (0)