From 9487da51a1a43ce1c41d8e5446843802ba6debee Mon Sep 17 00:00:00 2001 From: Niels Thykier Date: Tue, 5 Aug 2014 07:54:53 +0200 Subject: [PATCH] britney.py: Correct the hash key in nuninst_arch_report Signed-off-by: Niels Thykier --- britney.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/britney.py b/britney.py index 57120eb..654c041 100755 --- a/britney.py +++ b/britney.py @@ -2786,7 +2786,8 @@ class Britney(object): all = defaultdict(set) for p in nuninst[arch]: pkg = self.binaries['testing'][arch][0][p] - all[pkg].add(p) + all[(pkg[SOURCE], pkg[SOURCEVER])].add(p) + print '* %s' % (arch,)