From 39d9c1ebacdeb8af1d01d5b88a56c3522b74d235 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Thu, 18 Jun 2015 17:13:40 +0200 Subject: [PATCH] daklib/rm: Fix boolean inversion on partial removals Signed-off-by: Niels Thykier --- daklib/rm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daklib/rm.py b/daklib/rm.py index f9917584..92cd5906 100644 --- a/daklib/rm.py +++ b/daklib/rm.py @@ -465,7 +465,7 @@ def remove(session, reason, suites, removals, session.execute("DELETE FROM bin_associations WHERE bin = :packageid AND suite = :suiteid", {'packageid': package_id, 'suiteid': suite_id}) # Delete from the override file - if partial: + if not partial: if architecture == "source": type_id = dsc_type_id else: -- 2.39.2