diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-14 12:00:33 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-14 12:00:33 +0200 |
commit | 9ea60aa1d5dbea87c84d04944bd261f69585551e (patch) | |
tree | 4579b1516078ca3917af5888aaaaad45a9821cff /bin | |
parent | c6adeaf4ea3bea48c6d2e05b484d2a7cd2ad56c9 (diff) | |
download | jenkins.debian.net-9ea60aa1d5dbea87c84d04944bd261f69585551e.tar.xz |
fix typos
Diffstat (limited to 'bin')
-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 3556c11d..5ea2261f 100755 --- a/bin/reproducible_breakages.py +++ b/bin/reproducible_breakages.py @@ -156,12 +156,12 @@ def alien_dbd(): try: if result[0][0] != 'unreproducible': bad_files.append('/'.join([root, file]) + ' (' + - str(result[0][0]) + ' pacakge)') + str(result[0][0]) + ' package)') log.warning('/'.join([root, file]) + ' should not be ' 'there (' + str(result[0][0]) + ' package)') except IndexError: bad_files.append('/'.join([root, file]) + ' (' + - 'missing pacakge)') + 'missing package)') log.warning(bcolors.WARN + '/'.join([root, file]) + ' should ' 'not be there (missing package)' + bcolors.ENDC) return bad_files |