Bug 386995 - Add Tdhtml to Talos

a=anodelman, r=bhearsum
This commit is contained in:
anodelman%mozilla.com 2007-10-01 17:37:15 +00:00
Родитель ca6e74489c
Коммит 0d6a4c93a5
1 изменённых файлов: 8 добавлений и 2 удалений

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

@ -102,8 +102,11 @@ def send_to_csv(csv_file, results):
bd.rstrip('\n')
page_results = bd.splitlines()
i = 0
for mypage in page_results[2:]:
for mypage in page_results:
r = mypage.split(';')
#skip this line if it isn't the correct format
if len(r) == 1:
continue
r[1] = r[1].rstrip('/')
if r[1].find('/') > -1 :
page = r[1].split('/')[1]
@ -176,8 +179,11 @@ def send_to_graph(results_server, results_link, title, date, browser_config, res
bd.rstrip('\n')
page_results = bd.splitlines()
i = 0
for mypage in page_results[2:]:
for mypage in page_results:
r = mypage.split(';')
#skip this line if it isn't the correct format
if len(r) == 1:
continue
r[1] = r[1].rstrip('/')
if r[1].find('/') > -1 :
page = r[1].split('/')[1]