[pypy-commit] benchmarks single-run: events is a list not a dict

fijal noreply at buildbot.pypy.org
Wed Apr 8 11:53:12 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: single-run
Changeset: r323:cd369a185e0a
Date: 2015-04-08 11:53 +0200
http://bitbucket.org/pypy/benchmarks/changeset/cd369a185e0a/

Log:	events is a list not a dict

diff --git a/runner.py b/runner.py
--- a/runner.py
+++ b/runner.py
@@ -27,7 +27,7 @@
         for t in dict['times']:
             runs.append({"start_timestamp": cur_time, "duration": t})
             cur_time += t
-        r.append({"name": bench, "runs": runs, "events": {}})
+        r.append({"name": bench, "runs": runs, "events": []})
     return r
 
 def run_and_store(benchmark_set, result_filename, path, revision=0,


More information about the pypy-commit mailing list