From 498c8fe9f67c413fdd33b7670b4127836ed61668 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Sat, 5 Nov 2011 16:02:05 +0000 Subject: [PATCH] Don't add a "full" auto-hint if the package list is the "minimal set" 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 3653662..7952b05 100755 --- a/britney.py +++ b/britney.py @@ -2703,7 +2703,7 @@ class Britney: if not looped and len(items) > 1: mincands.append(items[:]) looped = True - if len(items) > 1: + if len(items) > 1 and frozenset(items) != frozenset(mincands[-1]): candidates.append(items) for l in [ candidates, mincands ]: