diff --git a/osc/core.py b/osc/core.py index b7e89280..af4eadc5 100644 --- a/osc/core.py +++ b/osc/core.py @@ -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"