From 3c3a8bfd86850f76ff8b87d749095da5fafb6591 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Wed, 11 Mar 2015 17:52:57 +0100 Subject: reproducible: html_notes: fixup last commit --- bin/reproducible_html_notes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/reproducible_html_notes.py') diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py index 51afa8dc..d839a2b2 100755 --- a/bin/reproducible_html_notes.py +++ b/bin/reproducible_html_notes.py @@ -403,7 +403,8 @@ def index_no_notes_section(notes, bugs, packages, suite, arch): html += tab + str(len(pkgs)) + ' ' + status + ' packages:\n' html += tab + '\n' for pkg in pkgs: - url = RB_PKG_URI + '/' + pkg[2] + '/' + pkg[3] + '/' + pkg[0] + '.html' + # 0: name, 1: suite, 2: arch, 3: status + url = RB_PKG_URI + '/' + pkg[1] + '/' + pkg[2] + '/' + pkg[0] + '.html' html += tab*2 + '' + pkg[0] html += '' + get_trailing_icon(pkg[0], bugs) + '\n' html += tab + '\n' -- cgit v1.2.3-54-g00ecf