Unverified Commit 0e23dbaa authored by Mattia Rizzolo's avatar Mattia Rizzolo
Browse files

reproducible: _html_breakages: re-add a .strip() that was lost in the...


reproducible: _html_breakages: re-add a .strip() that was lost in the refactor, to avoid unwanted line breaks

Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mattia@debian.org>
parent c467b0c1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -295,7 +295,8 @@ def _gen_packages_html(header, pkgs):
        html += header
        html += '<br/><pre>\n'
        for pkg in pkgs:
            html += tab + Package(pkg[0]).html_link(pkg[2], pkg[3], bugs=False)
            html += tab
            html += Package(pkg[0]).html_link(pkg[2], pkg[3], bugs=False).strip()
            html += ' (' + pkg[1] + ' in ' + pkg[2] + '/' + pkg[3] + ')\n'
        html += '</pre></p>\n'
    return html