From 1306eb664d00de55f529d1f0b2bc8af8a6825790 Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Sun, 15 Jun 2014 17:22:56 +0200 Subject: [PATCH] Britney: Fix malformed removal hints from auto hinter Signed-off-by: Niels Thykier --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index aa807a5..ffd560b 100755 --- a/britney.py +++ b/britney.py @@ -2628,7 +2628,7 @@ class Britney(object): for comp in self._inst_tester.solve_groups(groups): if len(comp) > 1: - self.do_hint("easy", "autohinter", [ MigrationItem("%s/%s" % (x.uvname, excuses[x.uvname].ver[1])) for x in comp]) + self.do_hint("easy", "autohinter", comp) self.__log("> Processing hints from the auto hinter [Original]", type="I")