mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Tools/importbench: Fix a misplaced stderr= (GH-12690)
This commit is contained in:
committed by
Petr Viktorin
parent
ded4737989
commit
2a4ce4387f
@@ -183,8 +183,8 @@ def main(import_, options):
|
||||
benchmarks = [b]
|
||||
break
|
||||
else:
|
||||
print('Unknown benchmark: {!r}'.format(options.benchmark,
|
||||
file=sys.stderr))
|
||||
print('Unknown benchmark: {!r}'.format(options.benchmark),
|
||||
file=sys.stderr)
|
||||
sys.exit(1)
|
||||
seconds = 1
|
||||
seconds_plural = 's' if seconds > 1 else ''
|
||||
|
||||
Reference in New Issue
Block a user