summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--misc/dashboard/godashboard/gobuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/dashboard/godashboard/gobuild.py b/misc/dashboard/godashboard/gobuild.py
index 4a5b858c3..aac90b326 100644
--- a/misc/dashboard/godashboard/gobuild.py
+++ b/misc/dashboard/godashboard/gobuild.py
@@ -575,7 +575,7 @@ class GetBenchmarks(webapp.RequestHandler):
sep = "\n\t"
for builder, iter, ns in bybuilder:
self.response.out.write('%s{ "builder": "%s", "iterations": %s, "nsperop": %s }' %
- (sep, builder, str(iter).replace("L", ""), str(nsperop).replace("L", "")))
+ (sep, builder, str(iter).replace("L", ""), str(ns).replace("L", "")))
sep = ",\n\t"
self.response.out.write('\n}\n')
return