britney.py: Correct the hash key in nuninst_arch_report

Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
Niels Thykier 2014-08-05 07:54:53 +02:00
parent d41f7f2119
commit 9487da51a1

View File

@ -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,)