summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-05-03 14:07:47 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-03 14:07:47 +0200
commitda660938d99a3f91eb2fe995e1fe5fbae997ea5e (patch)
tree6117fefad56d20704dedaecee32bd04924ac5464 /bin
parent9d6cb5bdcbbf16813d8a0c7a15e6a3f99f052fa0 (diff)
downloadjenkins.debian.net-da660938d99a3f91eb2fe995e1fe5fbae997ea5e.tar.xz
improve language
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_breakages.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py
index 90709699..4e42a543 100755
--- a/bin/reproducible_breakages.py
+++ b/bin/reproducible_breakages.py
@@ -40,7 +40,7 @@ def unrep_with_dbd_issues():
data = open(dbd, 'br').read(3)
if b'<' not in data:
bad_dbd.append((pkg, version, suite, arch))
- log.warning(pkg + '/' + suite + ' (' + version + ') has a '
+ log.warning(pkg + '/' + suite + ' (' + version + ') has '
'debbindiff output, but it does not seem to '
'be an html page.')
return without_dbd, bad_dbd
@@ -144,7 +144,7 @@ def alien_dbd():
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)
result = query_db(query.format(pkg=pkg, suite=suite, arch=arch))
try:
@@ -214,8 +214,8 @@ def gen_html():
html += _gen_section('are marked as unreproducible, but without ' +
'debbindiff output:', without_dbd)
html += _gen_section('are marked as unreproducible, but their ' +
- 'debbindiff output does not seem an html ' +
- 'page:', bad_dbd)
+ 'debbindiff output does not seem to be an html ' +
+ 'file:', bad_dbd)
# debbindiff report where it shouldn't be
html += _gen_section('are not marked as unreproducible, but they ' +
'have a debbindiff file:', not_unrep_with_dbd_file())