From afa9a543b1db4149e0e342008ddee1ed22103edb Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 15 Jun 2014 16:56:17 +0200 Subject: [PATCH] britney.py: Fix bug with hinting removals Fix a bug in the auto hinter that could make think that sources had already been removed. Signed-off-by: Niels Thykier --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index f88f77b..aa807a5 100755 --- a/britney.py +++ b/britney.py @@ -2613,7 +2613,7 @@ class Britney(object): groups = set() for y in sorted((y for y in self.upgrade_me if y.uvname in excuses), key=attrgetter('uvname')): - if y.is_removal and y.uvname not in sources_t: + if y.is_removal and y.package not in sources_t: # Already removed continue if not y.is_removal: