summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-04-05 07:18:19 (GMT)
committerPetr Viktorin <encukou@gmail.com>2019-04-05 07:18:19 (GMT)
commit2a4ce4387ff3e2b41c474e2b0522c8164162cafb (patch)
tree21d670395f35a1cda152770222fa08e5207f8065
parentded4737989316653469763230036b04513cb62b3 (diff)
downloadcpython-2a4ce4387ff3e2b41c474e2b0522c8164162cafb.zip
cpython-2a4ce4387ff3e2b41c474e2b0522c8164162cafb.tar.gz
cpython-2a4ce4387ff3e2b41c474e2b0522c8164162cafb.tar.bz2
Tools/importbench: Fix a misplaced stderr= (GH-12690)
-rw-r--r--Tools/importbench/importbench.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/importbench/importbench.py b/Tools/importbench/importbench.py
index e2ef758..6c4a537 100644
--- a/Tools/importbench/importbench.py
+++ b/Tools/importbench/importbench.py
@@ -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 ''