summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_live_status.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-13 12:02:04 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-13 12:02:04 +0200
commit08594266f7b528813ba4b47715cf2d307de0e08f (patch)
tree7a9488fd95fe1b4b22609e29987d444881ae23b0 /bin/reproducible_html_live_status.py
parentfb9ad7d51c69ff5a9ce2d87e5fb8ab3c63f40cc8 (diff)
downloadjenkins.debian.net-08594266f7b528813ba4b47715cf2d307de0e08f.tar.xz
reproducible: fixup query
Diffstat (limited to 'bin/reproducible_html_live_status.py')
-rwxr-xr-xbin/reproducible_html_live_status.py2
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))