commit | 2ee780b5ff95295c7299bc56e6e0d60081223b95 | [log] [tgz] |
---|---|---|
author | bensong@google.com <bensong@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Aug 15 17:55:42 2012 +0000 |
committer | bensong@google.com <bensong@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Wed Aug 15 17:55:42 2012 +0000 |
tree | 18f8a138c2774ea985d9acd8497e372795692b20 | |
parent | 8734816c3fadd3c9f270104b2c1a75cacdafb8b5 [diff] |
fixes elif bug. git-svn-id: http://skia.googlecode.com/svn/trunk@5114 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/bench_util.py b/bench/bench_util.py index 62b1e29..3b150a0 100644 --- a/bench/bench_util.py +++ b/bench/bench_util.py
@@ -89,7 +89,7 @@ iter_len = len(iters) if representative == 'avg': rep = sum(iters) / iter_len - if representative == 'min': + elif representative == 'min': rep = iters[0] elif representative == 'med': if iter_len % 2: