[Secure-testing-commits] r31461 - lib/python
Florian Weimer
fw at moszumanska.debian.org
Sat Jan 17 22:39:14 UTC 2015
Author: fw
Date: 2015-01-17 22:39:14 +0000 (Sat, 17 Jan 2015)
New Revision: 31461
Modified:
lib/python/security_db.py
Log:
security_db.DB.getUnknownPackages(): Filter out [experimental]
We currently do not load package lists from the experimental source,
so we cannot perform the typo check there.
Modified: lib/python/security_db.py
===================================================================
--- lib/python/security_db.py 2015-01-17 22:37:47 UTC (rev 31460)
+++ lib/python/security_db.py 2015-01-17 22:39:14 UTC (rev 31461)
@@ -1809,6 +1809,7 @@
for (package, bug_name) in cursor.execute(
"""SELECT DISTINCT package, bug_name
FROM package_notes WHERE package_kind = 'unknown'
+ AND COALESCE (release, '') <> 'experimental'
AND NOT EXISTS (SELECT * FROM removed_packages
WHERE name = package)
ORDER BY package, bug_name"""):
More information about the Secure-testing-commits
mailing list