diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-30 16:49:54 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-30 16:49:54 +0200 |
commit | 0ef4a9c0e53baa2e91eac1d515eaec84d04dd895 (patch) | |
tree | 90bdd9badde78becc882bb140235c3db3925ab1d /bin | |
parent | 27530903da1ce04e2e9c8089a9ae7b4413f75d9d (diff) | |
download | jenkins.debian.net-0ef4a9c0e53baa2e91eac1d515eaec84d04dd895.tar.xz |
fix typo
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 ec2f6402..bc328710 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 WHERE status != "unreproducible"' + 'WHERE status != "" AND status != "unreproducible"' result = sorted(query_db(query)) log.info('\tprocessing ' + str(len(result))) |