summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_breakages.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-08-03 09:19:40 +0000
committerHolger Levsen <holger@layer-acht.org>2015-08-03 11:19:36 +0200
commitff9cf4d3514e54fb13223e42ebca7fd7d08a6d51 (patch)
tree9e56685154b18e3916edbcc624f392b34563b9f6 /bin/reproducible_breakages.py
parent04698a004003b00213b4783cd76ab64b1659dc8c (diff)
downloadjenkins.debian.net-ff9cf4d3514e54fb13223e42ebca7fd7d08a6d51.tar.xz
reproducible: breakages: do not complain about 404 packages lacking the buildinfo file
Diffstat (limited to 'bin/reproducible_breakages.py')
-rwxr-xr-xbin/reproducible_breakages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py
index 7857c694..ade60b74 100755
--- a/bin/reproducible_breakages.py
+++ b/bin/reproducible_breakages.py
@@ -80,7 +80,7 @@ def lack_buildinfo():
query = '''SELECT s.name, r.version, s.suite, s.architecture
FROM sources AS s JOIN results AS r ON r.package_id=s.id
WHERE r.status NOT IN
- ("blacklisted", "not for us", "FTBFS", "depwait", "")
+ ("blacklisted", "not for us", "FTBFS", "depwait", "404", "")
ORDER BY s.name ASC, s.suite DESC'''
results = query_db(query)
for pkg, version, suite, arch in results: