summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_notes.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-03-03 13:16:17 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-03 13:18:20 +0100
commitad5ee5295736731d600b35bf0ac6ce1d86c2fb0b (patch)
treee8c11de03934b6de3e7d558ab20288c9efbb379f /bin/reproducible_html_notes.py
parent7b7dabf7da8cf5133cd1b8827b8ea82417e0a7b1 (diff)
downloadjenkins.debian.net-ad5ee5295736731d600b35bf0ac6ce1d86c2fb0b.tar.xz
reproducible: notes: do not limit the 'package has been tested' to sid
Diffstat (limited to 'bin/reproducible_html_notes.py')
-rwxr-xr-xbin/reproducible_html_notes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_notes.py b/bin/reproducible_html_notes.py
index 6d7181e2..c710c8ed 100755
--- a/bin/reproducible_html_notes.py
+++ b/bin/reproducible_html_notes.py
@@ -152,7 +152,7 @@ def load_notes():
try: # actually have been tested
query = 'SELECT s.name ' + \
'FROM results AS r JOIN sources AS s ON r.package_id=s.id ' + \
- 'WHERE s.name="{pkg}" AND r.status != "" AND s.suite="sid"'
+ 'WHERE s.name="{pkg}" AND r.status != ""'
query = query.format(pkg=package)
result = query_db(query)[0]
except IndexError: