mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-05-19 14:31:33 +00:00
britney.py: Remove two more references to "testing"
Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
d5224f78cd
commit
7ed3568eca
@ -2599,7 +2599,7 @@ class Britney(object):
|
|||||||
|
|
||||||
if uninst:
|
if uninst:
|
||||||
self.output_logger.warning("")
|
self.output_logger.warning("")
|
||||||
self.output_logger.warning("Newly uninstallable packages in testing:")
|
self.output_logger.warning("Newly uninstallable packages in the target suite:")
|
||||||
format_and_log_uninst(self.output_logger,
|
format_and_log_uninst(self.output_logger,
|
||||||
self.options.architectures,
|
self.options.architectures,
|
||||||
uninst,
|
uninst,
|
||||||
@ -2811,8 +2811,9 @@ class Britney(object):
|
|||||||
def nuninst_arch_report(self, nuninst, arch):
|
def nuninst_arch_report(self, nuninst, arch):
|
||||||
"""Print a report of uninstallable packages for one architecture."""
|
"""Print a report of uninstallable packages for one architecture."""
|
||||||
all = defaultdict(set)
|
all = defaultdict(set)
|
||||||
|
binaries_t = self.suite_info.target_suite.binaries
|
||||||
for p in nuninst[arch]:
|
for p in nuninst[arch]:
|
||||||
pkg = self.binaries['testing'][arch][0][p]
|
pkg = binaries_t[arch][0][p]
|
||||||
all[(pkg.source, pkg.source_version)].add(p)
|
all[(pkg.source, pkg.source_version)].add(p)
|
||||||
|
|
||||||
print('* %s' % arch)
|
print('* %s' % arch)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user