From a72a462adc18bdd55c5950d9c3f22e0d44e80c9b Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Tue, 13 Dec 2016 09:56:25 +1100 Subject: bsp-builder: Fix final output errors. --- tester/rt/check.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tester/rt/check.py b/tester/rt/check.py index 6c158ce..44655f8 100755 --- a/tester/rt/check.py +++ b/tester/rt/check.py @@ -494,9 +494,9 @@ class build: self.build_arch_bsp(arch, bsp) end = datetime.datetime.now() log.notice('^ Architecture Time %s' % (str(end - start))) - log.notice(' warnings:%d exes:%d objs:%s libs:%d' % \ - self.warnings.get(), self.counts['exes'], - self.counts['objs'], self.counts['libs']) + log.notice(' warnings:%d exes:%d objs:%d libs:%d' % \ + (self.warnings.get(), self.counts['exes'], + self.counts['objs'], self.counts['libs'])) log.output('Architecture Warnings:') log.output(self.warnings.report()) @@ -504,9 +504,9 @@ class build: for arch in self.config.archs(): self.build_arch(arch) log.notice('^ Profile Time %s' % (str(end - start))) - log.notice('+ warnings:%d exes:%d objs:%s libs:%d' % \ - self.warnings.get(), self.counts['exes'], - self.counts['objs'], self.counts['libs']) + log.notice('+ warnings:%d exes:%d objs:%d libs:%d' % \ + (self.warnings.get(), self.counts['exes'], + self.counts['objs'], self.counts['libs'])) log.output('Profile Warnings:') log.output(self.warnings.report()) -- cgit v1.2.3