diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-01-23 17:12:23 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-01-23 17:12:23 +0100 |
commit | 39e76b232f61682d56b39e59cadd70a358061c24 (patch) | |
tree | 50bd49876912d87160d405463ed59a9cac406d80 | |
parent | f1a62dbc920d58cfd16e7dc5f92527ea2308e450 (diff) | |
download | jenkins.debian.net-39e76b232f61682d56b39e59cadd70a358061c24.tar.xz |
reproducible Debian: fix log message and language in two comments
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_html_breakages.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py index 71181d5e..1ae6a0a1 100755 --- a/bin/reproducible_html_breakages.py +++ b/bin/reproducible_html_breakages.py @@ -184,7 +184,7 @@ def alien_log(directory=None): def alien_buildinfo(): - log.info('running alien_log check...') + log.info('running alien_buildinfo check...') query = '''SELECT r.version FROM sources AS s JOIN results AS r ON r.package_id=s.id WHERE r.status != '' AND s.name='{pkg}' AND s.suite='{suite}' @@ -334,7 +334,7 @@ def update_stats_breakages(diffoscope_timeouts, diffoscope_crashes): def gen_html(): html = '' - # files that should not be there (e.g. removed package without cleanup) + # files that should not be there (e.g. removed packages without cleanup) html += _gen_files_html('log files that should not be there:', entries=alien_log()) html += _gen_files_html('diffoscope files that should not be there:', @@ -345,7 +345,7 @@ def gen_html(): entries=alien_buildinfo()) html += _gen_files_html('history pages that should not be there and thus have been removed:', entries=alien_history()) - # diffoscope report where it shouldn't be + # diffoscope reports where they shouldn't be html += _gen_packages_html('are not marked as unreproducible, but they ' + 'have a diffoscope file:', not_unrep_with_dbd_file()) # missing files |