commit | 915b80bf39c858073c955865d54640a7e758ce06 | [log] [tgz] |
---|---|---|
author | Kevin Lubick <kjlubick@google.com> | Tue Oct 09 09:22:23 2018 -0400 |
committer | Kevin Lubick <kjlubick@google.com> | Tue Oct 09 13:31:11 2018 +0000 |
tree | 23eecad1b6f04c59946c32692963ddb09f2e0d45 | |
parent | 32f547a418ff70a9ed09c1b6a151752405629104 [diff] [blame] |
Fix key in perf data Bug: skia: Change-Id: Ic65f6dd37b2fa16989e4c2f780672e3293ddbd5f Reviewed-on: https://skia-review.googlesource.com/c/160762 Reviewed-by: Kevin Lubick <kjlubick@google.com>
diff --git a/infra/bots/buildstats_web.py b/infra/bots/buildstats_web.py index 1dfd898..bdee07c 100644 --- a/infra/bots/buildstats_web.py +++ b/infra/bots/buildstats_web.py
@@ -19,7 +19,7 @@ propstr = sys.argv[4] results = { - 'keys': { }, + 'key': { }, 'results': { } } @@ -29,7 +29,7 @@ keys = keystr.split(' ') for i in range(0, len(keys), 2): - results['keys'][keys[i]] = keys[i+1] + results['key'][keys[i]] = keys[i+1] r = { 'total_size_bytes': os.path.getsize(input_file)