diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_json.py | 2 |
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))) |