summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_breakages.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-01-07 12:03:45 +0100
committerHolger Levsen <holger@layer-acht.org>2016-01-07 12:03:45 +0100
commit05e27dd6599bd3f7869d48dd16f39426dfe1f0bc (patch)
tree7499d44048e7dfeb582398cc94dc33ebb6ce91d7 /bin/reproducible_html_breakages.py
parentb8c7de69fa7e2f0c56bac206e0a2cb2d45d4f553 (diff)
downloadjenkins.debian.net-05e27dd6599bd3f7869d48dd16f39426dfe1f0bc.tar.xz
reproducible: improve breakage description
Diffstat (limited to 'bin/reproducible_html_breakages.py')
-rwxr-xr-xbin/reproducible_html_breakages.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py
index 6cb171c4..12c9de3d 100755
--- a/bin/reproducible_html_breakages.py
+++ b/bin/reproducible_html_breakages.py
@@ -315,8 +315,9 @@ if __name__ == '__main__':
bugs = get_bugs()
html = '<p>This page lists unexpected things a human should look at and '
html += 'fix, like packages with an incoherent status or files that '
- html += 'should not be there. Be warned that quite some of these breakages '
- html += 'are due to bugs in <a href="http://anonscm.debian.org/cgit/reproducible/diffoscope.git">diffoscope</a>.'
+ html += 'should not be there. Some of these breakages are caused by '
+ html += 'bugs in <a href="http://anonscm.debian.org/cgit/reproducible/diffoscope.git">diffoscope</a> '
+ html += 'while others are probably due to bugs in the scripts run by jenkins. '
html += '<em>Please help making this page empty!</em></p>\n'
breakages = gen_html()
if breakages:
@@ -324,7 +325,7 @@ if __name__ == '__main__':
else:
html += '<p><b>COOL!!!</b> Everything is GOOD and not a single issue was '
html += 'detected. <i>Enjoy!</i></p>'
- title = 'Breakages on reproducible.debian.net'
+ title = 'Breakage on reproducible.debian.net'
destfile = BASE + '/index_breakages.html'
desturl = REPRODUCIBLE_URL + '/index_breakages.html'
write_html_page(title, html, destfile, style_note=True)