From 9d6cb5bdcbbf16813d8a0c7a15e6a3f99f052fa0 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sun, 3 May 2015 13:56:42 +0200 Subject: improve language --- bin/reproducible_breakages.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'bin/reproducible_breakages.py') diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py index 145241cd..90709699 100755 --- a/bin/reproducible_breakages.py +++ b/bin/reproducible_breakages.py @@ -41,8 +41,8 @@ def unrep_with_dbd_issues(): if b'<' not in data: bad_dbd.append((pkg, version, suite, arch)) log.warning(pkg + '/' + suite + ' (' + version + ') has a ' - 'debbindiff output, but it does not seem an ' - 'html page.') + 'debbindiff output, but it does not seem to ' + 'be an html page.') return without_dbd, bad_dbd @@ -120,7 +120,7 @@ def alien_rbuild(): pkg, version = file.rsplit('.', 2)[0].rsplit('_', 1) except ValueError: log.critical(bcolors.FAIL + '/'.join([root, file]) + - ' does not seems like a file that should be there' + ' does not seem to be a file that should be there' + bcolors.ENDC) if not query_db(query.format(pkg=pkg, suite=suite, arch=arch)): bad_files.append('/'.join([root, file])) @@ -203,11 +203,11 @@ 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('rbuild that should not be there', None, + html += _gen_section('rbuild file that should not be there', None, entries=alien_rbuild()) - html += _gen_section('debbindiffs that should not be there', None, + html += _gen_section('debbindiff files that should not be there:', None, entries=alien_dbd()) - html += _gen_section('rb-pkg pages that should not be there', None, + html += _gen_section('rb-pkg pages that should not be there:', None, entries=alien_rbpkg()) # debbindiff troubles without_dbd, bad_dbd = unrep_with_dbd_issues() @@ -220,10 +220,10 @@ def gen_html(): html += _gen_section('are not marked as unreproducible, but they ' + 'have a debbindiff file:', not_unrep_with_dbd_file()) # missing buildlog - html += _gen_section('are built but does not have a buildlog', + html += _gen_section('are built but don\'t have a buildlog:', lack_rbuild()) # pbuilder-satisfydepends failed - html += _gen_section('failed to met their build-dependecies', + html += _gen_section('failed to match their build-dependencies:', pbuilder_dep_fail()) return html -- cgit v1.2.3-54-g00ecf