Commit 4ec0ce17 authored by Gioele Barabucci's avatar Gioele Barabucci Committed by Holger Levsen
Browse files

bin/rebuilderd_stats: Break lines between sections and between packages

parent b2073ef5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -110,9 +110,9 @@ def main() -> None:

    for message, packages in messages_packages.items():
        anchor = message.replace(" ", "-")
        print(f'<h2 id="{anchor}">{message}</h2>')
        print(f'\n<h2 id="{anchor}">{message}</h2>')
        packages = sorted(packages, key=lambda pkg: package_logs.get(pkg, 0))
        print(" ".join(format_link(pkg) for pkg in packages))
        print("\n".join(format_link(pkg) for pkg in packages))

    print("<br/><br/><br/></main></body></html>")