summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-22 22:13:44 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-22 22:13:44 +0200
commit1515f07f4ef272638eeefdd1ce5591c70b5f072f (patch)
treec5b6c0682b826c545b198a8e9184294f5e50b81a /bin
parent4d69e2059eeed136f691e1e78810aff2665e2981 (diff)
downloadjenkins.debian.net-1515f07f4ef272638eeefdd1ce5591c70b5f072f.tar.xz
reproducible: improve language
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_html_breakages.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py
index c17abf14..d3d88da7 100755
--- a/bin/reproducible_html_breakages.py
+++ b/bin/reproducible_html_breakages.py
@@ -116,7 +116,7 @@ def pbuilder_dep_fail():
if re.search(b'E: pbuilder-satisfydepends failed.', line):
bad_pkgs.append((pkg, version, suite, arch))
log.warning(suite + '/' + arch + '/' + pkg + ' (' + version +
- ') failed to meet its dependencies.')
+ ') failed to satisfy its dependencies.')
return bad_pkgs
@@ -260,7 +260,7 @@ def _gen_section(header, pkgs, entries=None):
def gen_html():
html = ''
# files that should not be there (e.g. removed package without cleanup)
- html += _gen_section('log files that should not be there', None,
+ html += _gen_section('log files that should not be there:', None,
entries=alien_log())
html += _gen_section('diffoscope files that should not be there:', None,
entries=alien_dbd())
@@ -286,7 +286,7 @@ def gen_html():
'file - so probably diffoscope ran into a ' +
'timeout:', bad_dbd)
# pbuilder-satisfydepends failed
- html += _gen_section('failed to match their build-dependencies:',
+ html += _gen_section('failed to satisfy their build-dependencies:',
pbuilder_dep_fail())
return html