Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/bartosh/osc
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-h committed Dec 6, 2013
2 parents d04c361 + 2d29c35 commit daf5da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit daf5da2

Please sign in to comment.