diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-05-03 13:34:53 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-03 13:37:31 +0200 |
commit | 73a55fb46ca12261664c8a94ce9897f7f3ba5891 (patch) | |
tree | ca7633b5d78306a8c8ee20d99b3a5a50b6a3646c | |
parent | 70fba9c726aa4ce669eb689c5c2d3a6a6dcc1278 (diff) | |
download | jenkins.debian.net-73a55fb46ca12261664c8a94ce9897f7f3ba5891.tar.xz |
reproducible: breakages: add a missing space (otherwise parsing the output would be awful)
-rwxr-xr-x | bin/reproducible_breakages.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py index 57cfba32..145241cd 100755 --- a/bin/reproducible_breakages.py +++ b/bin/reproducible_breakages.py @@ -149,12 +149,12 @@ def alien_dbd(): result = query_db(query.format(pkg=pkg, suite=suite, arch=arch)) try: if result[0][0] != 'unreproducible': - bad_files.append('/'.join([root, file]) + '(' + + bad_files.append('/'.join([root, file]) + ' (' + str(result[0][0]) + ' pacakge)') log.warning('/'.join([root, file]) + ' should not be ' 'there (' + str(result[0][0]) + ' package)') except IndexError: - bad_files.append('/'.join([root, file]) + '(' + + bad_files.append('/'.join([root, file]) + ' (' + 'missing pacakge)') log.warning(bcolors.WARN + '/'.join([root, file]) + ' should ' 'not be there (missing package)' + bcolors.ENDC) |