From 241b17602d46ba49a835104b7afcb7303ae206a5 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 13 Nov 2016 17:38:24 +0000 Subject: [PATCH] utils: Remove condition that is always true Signed-off-by: Niels Thykier --- britney2/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney2/utils.py b/britney2/utils.py index a0a744c..66d49a4 100644 --- a/britney2/utils.py +++ b/britney2/utils.py @@ -586,7 +586,7 @@ def check_installability(inst_tester, binaries, arch, updates, affected, check_a # only check arch:all packages if requested if check_archall or actual_arch != 'all': nuninst_arch = nuninst[parch] - elif actual_arch == 'all': + else: nuninst[parch].discard(name) result = test_installability(inst_tester, name, pkg_id, broken, nuninst_arch) if improvement > 0 or not result: