Commit 2a4ce438 authored by Anthony Sottile's avatar Anthony Sottile Committed by Petr Viktorin

Tools/importbench: Fix a misplaced stderr= (GH-12690)

parent ded47379
......@@ -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 ''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment