diff options
-rwxr-xr-x | bin/reproducible_html_breakages.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py index 4a2158cd..4da0ba33 100755 --- a/bin/reproducible_html_breakages.py +++ b/bin/reproducible_html_breakages.py @@ -311,7 +311,9 @@ def gen_html(): 'timeout:', bad_dbd) # TODO: graph this html += str(len(sources_without_dbd)) - html += ' source packages on which diffoscope ran into a timeout or crashed.' + html += ' source packages on which diffoscope ran into a timeout (' + html += str(len(without_dbd) + ') or crashed (' + html += str(len(bad_dbd) + ').' html += '<br/> <a href="https://tests.reproducible-builds.org/debian/artifacts/">Artifacts diffoscope crashed</a> on are available for 48h for download.' # pbuilder-satisfydepends failed html += _gen_packages_html('failed to satisfy their build-dependencies:', |