From 8c26798395c5bc6cbebcf5dc3f45ae82e1fe7377 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Sat, 16 Mar 2013 16:31:04 +0000 Subject: [PATCH] write_excuses: clear the list of excuses before building Although this isn't an issue during normal runs, the excuses might be built multiple times during a hint-tester run and should not accumulate during the run. Signed-off-by: Adam D. Barratt --- britney.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/britney.py b/britney.py index 386b1ff..252f722 100755 --- a/britney.py +++ b/britney.py @@ -1581,6 +1581,8 @@ class Britney(object): # if a package is going to be removed, it will have a "-" prefix upgrade_me = [] + self.excuses = [] + # for every source package in testing, check if it should be removed for pkg in sources['testing']: if should_remove_source(pkg):