diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-03-03 19:35:27 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-04 01:09:42 +0100 |
commit | 92e5d1fd7a6aa00fab00da0126f7fa89066d5b70 (patch) | |
tree | 25b69ad5d0030f77cb0d8acc1a89c91649539b14 | |
parent | db2c181e5b897fa9160e3d7ae2164973cf370bd2 (diff) | |
download | jenkins.debian.net-92e5d1fd7a6aa00fab00da0126f7fa89066d5b70.tar.xz |
reproducible: common: drop another leftover of the era where some packages did not produce .buildinfo files
-rwxr-xr-x | bin/reproducible_common.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 0e75dade..2e7230c9 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -318,11 +318,6 @@ def join_status_icon(status, package=None, version=None): 'not_for_us': 'weather-few-clouds-night.png', 'blacklisted': 'error.png'} if status == 'unreproducible': - if not package: - log.error('Could not determinate the real state of package None. ' - + 'Returning a generic "FTBR"') - status = 'FTBR' - else: status = 'FTBR' log.debug('Linking status ⇔ icon. package: ' + str(package) + ' @ ' + str(version) + ' status: ' + status) |