From ceebdf5ec2c8ff36364733f5f32607d1ce8cba01 Mon Sep 17 00:00:00 2001 From: "anodelman%mozilla.com" Date: Mon, 28 Jan 2008 21:38:16 +0000 Subject: [PATCH] Bug 413714 - cleanup talos display on tinderbox bustage fix for tinderbox print statements disappearing on the waterfall a/r=anodelman git-svn-id: svn://10.0.0.236/trunk@244245 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/testing/performance/talos/run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/testing/performance/talos/run_tests.py b/mozilla/testing/performance/talos/run_tests.py index f1fb614af31..3710837e972 100755 --- a/mozilla/testing/performance/talos/run_tests.py +++ b/mozilla/testing/performance/talos/run_tests.py @@ -225,7 +225,7 @@ def send_to_graph(results_server, results_link, title, date, browser_config, res first_results = '' last_results = '' - full_results = 'RETURN:

Details:
' + full_results = '\nRETURN:

Details:
' lines = links.split('\n') for line in lines: if line == "": @@ -238,7 +238,7 @@ def send_to_graph(results_server, results_link, title, date, browser_config, res linkName += ": " + str(values[2]) url = url_format % (results_server, values[0]) link = link_format % (url, linkName) - first_results = first_results + "RETURN:" + link + '
' + first_results = first_results + "\nRETURN:" + link + '
' else: url = url_format % (results_server, values[0]) link = link_format % (url, linkName)