From d074142d35ef45616c6693aa818540a186af1cce Mon Sep 17 00:00:00 2001 From: Ivo De Decker Date: Thu, 22 Nov 2018 22:11:22 +0000 Subject: [PATCH] Fix architecture check for binnmu removals Signed-off-by: Ivo De Decker --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index e201873..d5bf84a 100755 --- a/britney.py +++ b/britney.py @@ -1305,7 +1305,7 @@ class Britney(object): pkg = pkg_id.package_name # if the package is architecture-independent, then ignore it tpkg_data = packages_t_a[pkg] - if tpkg_data.version == 'all': + if tpkg_data.architecture == 'all': if pkg_id not in source_u.binaries: # only add a note if the arch:all does not match the expected version excuse.addhtml("Ignoring removal of %s as it is arch: all" % (pkg))