From 0e50a0ef442394be24b03922de73329913478537 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Sat, 22 Oct 2011 19:28:09 +0000 Subject: [PATCH] Fix up broken logic so that binary removals work again Signed-off-by: Adam D. Barratt --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index 2eea78f..d8b03a8 100755 --- a/britney.py +++ b/britney.py @@ -2059,7 +2059,7 @@ class Britney: sources = self.sources binaries = self.binaries['testing'] # remove all binary packages (if the source already exists) - if item.architecture == 'source' or item.is_removal: + if item.architecture == 'source' or not item.is_removal: if item.package in sources['testing']: source = sources['testing'][item.package] # remove all the binaries