Skip to content

Commit 33ab6fe

Browse files
author
ArtOfCode-
committed
Make analysis script python 2
1 parent ec0b1fa commit 33ab6fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queue_timings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def main():
1616
if resp == "y":
1717
os.remove("bodyfetcherQueueTimings.p")
1818

19-
for site, times in queue_data:
19+
for site, times in queue_data.iteritems():
2020
print("{0}: min {1}, max {2}, avg {3}".format(site, min(times), max(times), sum(times) / len(times)))
2121

2222
else:

0 commit comments

Comments
 (0)