aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/bench_util.py
diff options
context:
space:
mode:
Diffstat (limited to 'bench/bench_util.py')
-rw-r--r--bench/bench_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/bench_util.py b/bench/bench_util.py
index f3dd7af1a0..22ded9dd70 100644
--- a/bench/bench_util.py
+++ b/bench/bench_util.py
@@ -82,7 +82,7 @@ def parse(settings, lines):
times = new_config.group(2)
for new_time in re.finditer(time_re, times):
current_time_type = new_time.group(1)
- iters = [float[i] for i in
+ iters = [float(i) for i in
new_time.group(2).strip().split(',')]
current_time = sum(iters) / len(iters)
benches.append(BenchDataPoint(