diff options
-rwxr-xr-x | bin/reproducible_common.py | 2 | ||||
-rwxr-xr-x | bin/reproducible_html_indexes.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index fa8394ba..202ea40b 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -351,7 +351,7 @@ def link_package(package, suite, arch, bugs={}): html = '<a href="' + url + '" class="noted" title="' + title + \ '">' + package + '</a>' finally: - html += get_trailing_icon(package, bugs) + html += get_trailing_icon(package, bugs) + '\n' return html diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index 262f2a08..0d86db9e 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -393,7 +393,6 @@ def build_page_section(page, section, suite, arch): for row in rows: pkg = row[0] html += tab*2 + link_package(pkg, suite, arch, bugs) - html += '\n' else: html += tab + '</code>\n' html += '</p>' |