mirror of
https://github.com/openSUSE/osc.git
synced 2025-10-06 09:19:19 +02:00
fixes broken osc results on project level
This commit is contained in:
@@ -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"
|
||||
|
Reference in New Issue
Block a user