8000 gh-111165: Add missed "support." prefix for "verbose" (GH-111327) · python/cpython@a498192 · GitHub
[go: up one dir, main page]

Skip to content

Commit a498192

Browse files
gh-111165: Add missed "support." prefix for "verbose" (GH-111327)
1 parent 1262e41 commit a498192

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)
0