diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-06-01 16:46:00 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-01 16:46:40 +0200 |
commit | c1172fc6599d2367d5037a1c58789d4899270d48 (patch) | |
tree | 8247bcabf899976bfd82fece1101eab2a4dfbca1 | |
parent | 5f14b5906639f43f7a78c7285c3513f62dce79c3 (diff) | |
download | jenkins.debian.net-c1172fc6599d2367d5037a1c58789d4899270d48.tar.xz |
reproducible: html_packages: fix typo
-rwxr-xr-x | bin/reproducible_html_packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index d649b12d..a7f9e263 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -116,7 +116,7 @@ def link_buildlogs(package, eversion, suite, arch): uri = LOGS_URI + '/' + path if os.access(log.format('1'), os.R_OK): html += '<a href="' + uri.format('1') + '" target="main">log1</a>\n' - if os.access(logs.format('2'), os.R_OK): + if os.access(log.format('2'), os.R_OK): html += '<a href="' + uri.format('2') + '" target="main">2</a>\n' return html |