Skip to content

Commit a8aa40c

Browse files
committed
Fix obvious typo in string formatting
1 parent 2373382 commit a8aa40c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gbench/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def run_benchmark(exe_name, benchmark_flags):
129129
thandle, output_name = tempfile.mkstemp()
130130
os.close(thandle)
131131
benchmark_flags = list(benchmark_flags) + \
132-
['--benchmark_out=' % output_name]
132+
['--benchmark_out=%s' % output_name]
133133

134134
cmd = [exe_name] + benchmark_flags
135135
print("RUNNING: %s" % ' '.join(cmd))

0 commit comments

Comments
 (0)