Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2a4ce43

Browse files
asottileencukou
authored andcommitted
Tools/importbench: Fix a misplaced stderr= (GH-12690)
1 parent ded4737 commit 2a4ce43

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tools/importbench/importbench.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ def main(import_, options):
183183
benchmarks = [b]
184184
break
185185
else:
186-
print('Unknown benchmark: {!r}'.format(options.benchmark,
187-
file=sys.stderr))
186+
print('Unknown benchmark: {!r}'.format(options.benchmark),
187+
file=sys.stderr)
188188
sys.exit(1)
189189
seconds = 1
190190
seconds_plural = 's' if seconds > 1 else ''

0 commit comments

Comments
 (0)