aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mysql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql.py b/mysql.py
index 9baf4e3..9d3811c 100644
--- a/mysql.py
+++ b/mysql.py
@@ -249,7 +249,7 @@ class Benchmark_MYSQL( Benchmark ):
for mid, measures in self.results.items():
if mid[0] == "chattymalloc":
- hist = [(n, s) for s,n measures[0]["hist"].items()]
+ hist = [(n, s) for s,n in measures[0]["hist"].items()]
hist.sort()
print("Histogram for", mid[1], "threads:")
print(hist)