1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-10 22:56:15 +01:00

Merge branch 'fix_project_results' of https://github.com/lethliel/osc

Fix for commit 2d327df ("Allow multiple --repo and --arch options in
\"osc prjresults\"").
This commit is contained in:
Marcus Huewe 2017-10-18 15:34:17 +02:00
commit a3c2aeb64c

View File

@ -5725,9 +5725,9 @@ def get_prj_results(apiurl, prj, hide_legend=False, csv=False, status_filter=Non
pacs = sorted(list(set(pacs)))
for node in root.findall('result'):
# filter architecture and repository
if arch != None and node.get('arch') not in arch:
if arch and node.get('arch') not in arch:
continue
if repo != None and node.get('repository') not in repo:
if repo and node.get('repository') not in repo:
continue
if node.get('dirty') == "true":
state = "outdated"