From 1515f07f4ef272638eeefdd1ce5591c70b5f072f Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 22 Sep 2015 22:13:44 +0200 Subject: reproducible: improve language --- bin/reproducible_html_breakages.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin') 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 -- cgit v1.2.3-54-g00ecf