aboutsummaryrefslogtreecommitdiff
path: root/crosperf/results_cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'crosperf/results_cache.py')
-rw-r--r--crosperf/results_cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/crosperf/results_cache.py b/crosperf/results_cache.py
index 54569808..1aa96e09 100644
--- a/crosperf/results_cache.py
+++ b/crosperf/results_cache.py
@@ -423,7 +423,7 @@ class Result(object):
keyvals = {}
with open(filename) as f:
- histograms = json.loads(f)
+ histograms = json.load(f)
for obj in histograms:
if 'name' not in obj or 'sampleValues' not in obj:
continue