From cd242ff453dba3a8dd73d90a3b731380e88495d9 Mon Sep 17 00:00:00 2001 From: Ivo De Decker Date: Mon, 7 Oct 2013 19:43:21 +0000 Subject: [PATCH] read hints earlier This allow to do quicker test of the code that reads the hints. Signed-off-by: Niels Thykier --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index a337ac5..177f5dd 100755 --- a/britney.py +++ b/britney.py @@ -256,6 +256,7 @@ class Britney(object): apt_pkg.init() self.sources = {} self.binaries = {} + self.hints = self.read_hints(self.options.unstable) if self.options.nuninst_cache: self.__log("Not building the list of non-installable packages, as requested", type="I") @@ -324,7 +325,6 @@ class Britney(object): # read additional data self.dates = self.read_dates(self.options.testing) self.urgencies = self.read_urgencies(self.options.testing) - self.hints = self.read_hints(self.options.unstable) self.excuses = [] self.dependencies = {}