diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-02-09 18:47:50 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-02-09 18:47:50 +0100 |
commit | 7c089ba0ce4a936e29d8b5ee170982937dec20f9 (patch) | |
tree | 434fe97b28d9d2b5ba70c2523ae6fc6dc414a857 /bin | |
parent | 609cc4c015c528ce2bf4e27554b0cb411f586f00 (diff) | |
download | jenkins.debian.net-7c089ba0ce4a936e29d8b5ee170982937dec20f9.tar.xz |
reproducible Debian: clarify math used
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_breakages.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py index 8c04ea94..5d64c4bb 100755 --- a/bin/reproducible_html_breakages.py +++ b/bin/reproducible_html_breakages.py @@ -369,9 +369,9 @@ def gen_html(): 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 (' + html += ' source packages on which diffoscope ran into timeouts (' html += str(count_pkgs(bad_dbd)) + ') or crashed (' - html += str(count_pkgs(without_dbd)) + ').' + html += str(count_pkgs(without_dbd)) + ') or sometimes both.' # gather stats and add graph update_stats_breakages(count_pkgs(bad_dbd), count_pkgs(without_dbd)) png_file = 'stats_breakages.png' |