From 226b779afd56423dd55fc320834088cd165e76ee Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Tue, 22 May 2012 21:16:36 +0000 Subject: [PATCH] Fix thinko in the introduction of "recurse" "not force and not earlyabort" simplifies to "not earlyabort" rather than "not force", as an easy hint would set "earlyabort" but not "force". 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 9cb75b1..5205f64 100755 --- a/britney.py +++ b/britney.py @@ -2257,7 +2257,7 @@ class Britney(object): if force or self.is_nuninst_asgood_generous(self.nuninst_orig, nuninst_end): # Result accepted either by force or by being better than the original result. - if not force: + if recurse: self.output_write("Apparently successful\n") self.output_write("final: %s\n" % ",".join(sorted([ x.uvname for x in selected ]))) self.output_write("start: %s\n" % self.eval_nuninst(nuninst_start))