Author: fw
Date: 2008-05-27 10:08:15 +0000 (Tue, 27 May 2008)
New Revision: 8909
Modified:
lib/python/security_db.py
Log:
lib/python/security_db.py: Fix missing singleton tuple
Modified: lib/python/security_db.py
==================================================================---
lib/python/security_db.py 2008-05-27 09:04:13 UTC (rev 8908)
+++ lib/python/security_db.py 2008-05-27 10:08:15 UTC (rev 8909)
@@ -386,7 +386,7 @@
AND sp.subrelease = ''''
ORDER BY sp.name, st.urgency, st.bug_name""")
- for (name, nickname) in ((''stable'',
''etch'')):
+ for (name, nickname) in ((''stable'',
''etch''),):
cursor.execute(
"""CREATE VIEW %s_status AS
SELECT DISTINCT sp.name AS package, st.bug_name AS bug,