diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-13 12:02:04 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-13 12:02:04 +0200 |
commit | 08594266f7b528813ba4b47715cf2d307de0e08f (patch) | |
tree | 7a9488fd95fe1b4b22609e29987d444881ae23b0 /bin/reproducible_html_live_status.py | |
parent | fb9ad7d51c69ff5a9ce2d87e5fb8ab3c63f40cc8 (diff) | |
download | jenkins.debian.net-08594266f7b528813ba4b47715cf2d307de0e08f.tar.xz |
reproducible: fixup query
Diffstat (limited to 'bin/reproducible_html_live_status.py')
-rwxr-xr-x | bin/reproducible_html_live_status.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_live_status.py b/bin/reproducible_html_live_status.py index e3faa5b9..b60de0f4 100755 --- a/bin/reproducible_html_live_status.py +++ b/bin/reproducible_html_live_status.py @@ -61,7 +61,7 @@ def generate_live_status_table(arch): query = 'SELECT s.id, s.suite, s.architecture, s.name, s.version, ' + \ 'p.date_build_started, r.status, r.build_duration, p.builder ' + \ 'FROM sources AS s JOIN schedule AS p ON p.package_id=s.id LEFT JOIN results AS r ON s.id=r.package_id ' + \ - 'WHERE (p.date_build_started != "" OR p.notify != "") AND s.architecture="{arch}" ' + \ + 'WHERE p.date_build_started != "" AND s.architecture="{arch}" ' + \ 'ORDER BY p.date_build_started DESC' html = '' rows = query_db(query.format(arch=arch)) |