diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-07 11:15:23 +0100 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-07 11:15:23 +0100 |
commit | e751895d2c92aab96e103893c4a438a1f7ac1823 (patch) | |
tree | 193dfae6201764cfd66a511695a2f077f864d88f | |
parent | 87949d2625c166448fc3ebfd2c9bb4fa34009acd (diff) | |
download | jenkins.debian.net-e751895d2c92aab96e103893c4a438a1f7ac1823.tar.xz |
reproducible: html_packages: use /index.html as a default view for the iframe, to print a nice hello world instead of an ungly 404 error
-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 f4eea167..c3671a48 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -100,7 +100,7 @@ def gen_extra_links(package, version, suite, arch): eversion + '.debbindiff.html' links = '' - default_view = False + default_view = '/index.html' # check whether there are notes available for this package if os.access(notes, os.R_OK): url = NOTES_URI + '/' + package + '_note.html' |