diff --git a/britney2/excusefinder.py b/britney2/excusefinder.py index 332ba55..dd16d71 100644 --- a/britney2/excusefinder.py +++ b/britney2/excusefinder.py @@ -502,11 +502,11 @@ class ExcuseFinder(object): if arch in self.options.outofsync_arches: text = text + " (but %s isn't keeping up, so never mind)" % (arch) excuse.missing_build_on_ood_arch(arch) + excuse.addinfo(text) else: excuse.policy_verdict = PolicyVerdict.REJECTED_CANNOT_DETERMINE_IF_PERMANENT excuse.missing_build_on_arch(arch) - - excuse.addhtml(text) + excuse.add_verdict_info(excuse.policy_verdict, text) # check if there is a `force' hint for this package, which allows it to go in even if it is not updateable forces = self.hints.search('force', package=src, version=source_u.version)