From e109b446dfe946f5c576f4541a0d7da2a54e07bb Mon Sep 17 00:00:00 2001 From: Ivo De Decker Date: Wed, 11 Dec 2013 21:21:13 +0100 Subject: [PATCH] add remove reason when package not in unstable --- britney.py | 1 + 1 file changed, 1 insertion(+) diff --git a/britney.py b/britney.py index 5ec9a43..542be29 100755 --- a/britney.py +++ b/britney.py @@ -1040,6 +1040,7 @@ class Britney(object): # otherwise, add a new excuse for its removal and return True src = self.sources['testing'][pkg] excuse = Excuse("-" + pkg) + excuse.addreason("remove") excuse.set_vers(src[VERSION], None) src[MAINTAINER] and excuse.set_maint(src[MAINTAINER].strip()) src[SECTION] and excuse.set_section(src[SECTION].strip())