Don't add a "full" auto-hint if the package list is the "minimal set"

Signed-off-by: Adam D. Barratt <adam@adam-barratt.org.uk>
This commit is contained in:
Adam D. Barratt 2011-11-05 16:02:05 +00:00
parent 9de352892a
commit edf2355984

View File

@ -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 ]: