Bug 390845 - integrate Talos with new pageloader. Bustage fix for sending

data in chunks to graph server, variable initialized in wrong location.
r=anodelman p=anodelman
This commit is contained in:
anodelman%mozilla.com 2007-09-05 16:22:13 +00:00
Родитель 5dc9a170ff
Коммит b67311f08b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -192,10 +192,10 @@ def send_to_graph(title, date, browser_config, results):
val_list = cd[count_type]
chunks = chunk_list(val_list)
chunk_link = ''
i = 0
for chunk in chunks:
filename = tempfile.mktemp()
tmpf = open(filename, "w")
i = 0
for val in chunk:
tmpf.write(result_format2 % (float(val), res + "_" + count_type.replace("%", "Percent"), tbox, i, date, browser_config['branch'], browser_config['buildid'], "discrete"))
i += 1