summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_json.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-11-14 19:43:31 +0100
committerHolger Levsen <holger@layer-acht.org>2015-11-14 19:43:31 +0100
commit7c8f3794c1494f126ebb1f17fe757ef35e46d032 (patch)
tree209a8ee56e2153f3a6ced8ba42818ba5cf925457 /bin/reproducible_json.py
parent953df888039759250fbcba6ad0a23ad34c5e6437 (diff)
downloadjenkins.debian.net-7c8f3794c1494f126ebb1f17fe757ef35e46d032.tar.xz
reproducible: fix query for reproducible-tracker.json to correctly exclude packages in status 'not for us'
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 82afb066..0200ded5 100755
--- a/bin/reproducible_json.py
+++ b/bin/reproducible_json.py
@@ -25,7 +25,7 @@ log.info('Creating json dump of current reproducible status')
# filter_query is defined in reproducible_common.py and excludes some FTBFS issues
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 NOT IN ("not-for-us", "404", "blacklisted" ) AND (( status != "FTBFS" ) OR ' \
+ 'WHERE status != "" AND status NOT IN ("not for us", "404", "blacklisted" ) AND (( status != "FTBFS" ) OR ' \
' ( status = "FTBFS" and r.package_id NOT IN (SELECT n.package_id FROM NOTES AS n WHERE ' + filter_query + ' )))'
result = sorted(query_db(query))