diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-01-24 01:56:55 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-01-24 01:56:55 +0100 |
commit | 390d06dcac992312f69b3e8db2266a42d8b9aa04 (patch) | |
tree | 6e6fee206ab8a696532e96e4b4636e84b1af710a | |
parent | 43c0ed46372e39779aea486f71a3bf1f033bcbcd (diff) | |
download | jenkins.debian.net-390d06dcac992312f69b3e8db2266a42d8b9aa04.tar.xz |
reproducible Debian: be consistant: %s#Trouble#Breakage#
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_html_breakages.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py index bcfd64b0..473505f9 100755 --- a/bin/reproducible_html_breakages.py +++ b/bin/reproducible_html_breakages.py @@ -335,7 +335,7 @@ def update_stats_breakages(diffoscope_timeouts, diffoscope_crashes): def gen_html(): html = '' # files that should not be there (e.g. removed packages without cleanup) - html += '<h2>Trouble caused by jenkins.debian.net</h2>' + html += '<h2>Breakage caused by jenkins.debian.net</h2>' html += _gen_files_html('log files that should not be there:', entries=alien_log()) html += _gen_files_html('diffoscope files that should not be there:', @@ -357,11 +357,11 @@ def gen_html(): # pbuilder-satisfydepends failed broken_pkgs = pbuilder_dep_fail() if broken_pkgs != []: - html += '<h3>Trouble caused by broken packages</h3>' + html += '<h3>Breakage caused by broken packages</h3>' html += _gen_packages_html('failed to satisfy their build-dependencies:', broken_pkgs) # diffoscope troubles - html += '<h2>Trouble caused by diffscope</h2>' + html += '<h2>Breakage caused by diffscope</h2>' without_dbd, bad_dbd, sources_without_dbd = unrep_with_dbd_issues() html += str(len(sources_without_dbd)) html += ' source packages on which diffoscope ran into a timeout (' |