1
0
Fork 0

Add a notification when no broken packages are found

This commit is contained in:
Luca Beltrame 2021-01-09 17:48:26 +01:00
parent 8b4fa46cac
commit 4e585ba6db
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

1
obs/fix_broken.py Normal file → Executable file
View file

@ -58,6 +58,7 @@ def check_status(project, username):
'//result[@arch="x86_64"]/status[@code="broken"]/@package'))
if not broken_packages:
logging.info("No broken packages found in %s", project)
return
for package in broken_packages: