1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-12 23:56:13 +01:00
This commit is contained in:
Marcus Huewe 2013-12-06 10:57:25 +01:00
commit daf5da2f18

View File

@ -5165,7 +5165,7 @@ def get_prj_results(apiurl, prj, hide_legend=False, csv=False, status_filter=Non
row = ['_'] + ['/'.join(tg) for tg in targets]
r.append(';'.join(row))
for pac in pacs:
row = [pac] + [status[pac][tg] for tg in targets]
row = [pac] + [status[pac][tg] for tg in targets if tg in status[pac]]
r.append(';'.join(row))
return r