From 7d7a42153d5f60bdc507fe0ba757407afb1c008a Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 30 Sep 2018 11:33:41 +0000 Subject: [PATCH] britney.py: Simply a loop in should_upgrade_src Signed-off-by: Niels Thykier --- britney.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/britney.py b/britney.py index 641cd8a..ea408b2 100755 --- a/britney.py +++ b/britney.py @@ -1368,12 +1368,10 @@ class Britney(object): # check if there is a `block' or `block-udeb' hint for this package, or a `block-all source' hint blocked = {} for hint in self.hints.search(package=src): - if hint.type == 'block': - blocked['block'] = hint - excuse.add_hint(hint) - if hint.type == 'block-udeb': - blocked['block-udeb'] = hint + if hint.type in {'block', 'block-udeb'}: + blocked[hint.type] = hint excuse.add_hint(hint) + if 'block' not in blocked: for hint in self.hints.search(type='block-all'): if hint.package == 'source' or (not source_t and hint.package == 'new-source'):