From 0c44d3ac27fda2e4d772b5caee69fb674d694914 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Fri, 24 Feb 2017 23:43:57 -0500 Subject: [PATCH] excuse: Add an EOL to the verdict summary line in HTML output devscripts' grep-excuses expects each
  • to be on its own line. When d7a676d0741729bb643e0b8c54b989cb747c6a4b added the verdict summary, without an EOL, it broke grep-excuses' ability to search by maintainer. Signed-off-by: James McCoy Signed-off-by: Niels Thykier --- britney2/excuse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney2/excuse.py b/britney2/excuse.py index 4dbd703..e301cfe 100644 --- a/britney2/excuse.py +++ b/britney2/excuse.py @@ -182,7 +182,7 @@ class Excuse(object): """Render the excuse in HTML""" res = "%s (%s to %s)\n
      \n" % \ (self.name, self.name, self.name, self.ver[0], self.ver[1]) - res += "
    • Migration status: %s" % self._format_verdict_summary() + res += "
    • Migration status: %s\n" % self._format_verdict_summary() if self.maint: res = res + "
    • Maintainer: %s\n" % (self.maint) if self.section and self.section.find("/") > -1: