From 6fb4a88ef024c72e6599fef4364b980b69737662 Mon Sep 17 00:00:00 2001 From: "anodelman@mozilla.com" Date: Mon, 28 Jan 2008 12:43:06 -0800 Subject: [PATCH] Bug 413714 - cleanup talos displays on tinderbox Bustage fix, trying to append float to string without str() a/r=anodelman --- testing/performance/talos/run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/performance/talos/run_tests.py b/testing/performance/talos/run_tests.py index ffec8ad3ca0..f1fb614af31 100755 --- a/testing/performance/talos/run_tests.py +++ b/testing/performance/talos/run_tests.py @@ -156,7 +156,7 @@ def chunk_list(val_list): def send_to_graph(results_server, results_link, title, date, browser_config, results): tbox = title url_format = "http://%s/%s" - link_format= "%s" + link_format= "%s" #value, testname, tbox, timeval, date, branch, buildid, type, data result_format = "%.2f,%s,%s,%d,%d,%s,%s,%s,%s,\n" result_format2 = "%.2f,%s,%s,%d,%d,%s,%s,%s,\n" @@ -235,7 +235,7 @@ def send_to_graph(results_server, results_link, title, date, browser_config, res if linkName in ('tp_pbytes', 'tp_%cpu'): continue if float(values[2]) > 0: - linkName += ": " + values[2] + linkName += ": " + str(values[2]) url = url_format % (results_server, values[0]) link = link_format % (url, linkName) first_results = first_results + "RETURN:" + link + '
'