summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_json.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-04-09 14:20:50 +0200
committerHolger Levsen <holger@layer-acht.org>2015-04-09 14:20:50 +0200
commitdec223060f54a0586a93c237cda8958c40483090 (patch)
treea4b81febacc507f3814e22fe9f465b1f422f948d /bin/reproducible_json.py
parent2823ee2a9db49f82e3007e9af0996ce9e0a1fea2 (diff)
downloadjenkins.debian.net-dec223060f54a0586a93c237cda8958c40483090.tar.xz
reproducible: fix filter needed to work around #781517
Diffstat (limited to 'bin/reproducible_json.py')
-rwxr-xr-xbin/reproducible_json.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_json.py b/bin/reproducible_json.py
index bc328710..89a1345c 100755
--- a/bin/reproducible_json.py
+++ b/bin/reproducible_json.py
@@ -23,7 +23,7 @@ log.info('Creating json dump of current reproducible status')
query = 'SELECT s.name, r.version, s.suite, s.architecture, r.status, r.build_date ' + \
'FROM results AS r JOIN sources AS s ON r.package_id = s.id '+ \
- 'WHERE status != "" AND status != "unreproducible"'
+ 'WHERE status != "" AND status != "FTBFS"'
result = sorted(query_db(query))
log.info('\tprocessing ' + str(len(result)))