[Secure-testing-commits] r28778 - lib/python
Holger Levsen
holger at moszumanska.debian.org
Mon Sep 15 12:22:51 UTC 2014
Author: holger
Date: 2014-09-15 12:22:51 +0000 (Mon, 15 Sep 2014)
New Revision: 28778
Modified:
lib/python/security_db.py
Log:
Invert ordering of issues in source package view: newest should be up.
Modified: lib/python/security_db.py
===================================================================
--- lib/python/security_db.py 2014-09-15 12:14:07 UTC (rev 28777)
+++ lib/python/security_db.py 2014-09-15 12:22:51 UTC (rev 28778)
@@ -1690,7 +1690,8 @@
FROM bugs, package_notes as p
WHERE p.bug_name = bugs.name
AND ( bugs.name LIKE 'DSA-%' OR bugs.name LIKE 'DLA-%')
- AND p.package = ?""", (package,))
+ AND p.package = ?
+ ORDER BY bugs.release_date DESC""", (package,))
def getTODOs(self, cursor=None, hide_check=False):
More information about the Secure-testing-commits
mailing list