Hi, attached are three small no brainer fixes I'd like to apply, please confirm :) cheers, Holger
Index: lib/python/bugs.py
===================================================================
--- lib/python/bugs.py (Revision 28738)
+++ lib/python/bugs.py (Arbeitskopie)
@@ -886,8 +886,9 @@
return ("%s-%02d-%02d" % (year, month, int(day)), name, desc)
def finishBug(self, bug):
+ # FIXME: it seems wrong to hardcode the testing name here...
# Convert all package notes to notes for etch (testing).
- testing = debian_support.internRelease("etch")
+ testing = debian_support.internRelease("jessie")
for n in bug.notes:
if n.release is None:
self.raiseSyntaxError(
Index: lib/python/security_db.py
===================================================================
--- lib/python/security_db.py (Revision 28738)
+++ lib/python/security_db.py (Arbeitskopie)
@@ -424,7 +424,7 @@
return 999
self.db.createscalarfunction("urgency_to_number", urgency_to_number, 1)
- releases = ['potato', 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy', 'sid']
+ releases = ['potato', 'woody', 'sarge', 'etch', 'lenny', 'squeeze', 'wheezy', 'jessie', 'sid']
def release_to_number(u):
try:
return releases.index(u)
Index: bin/tracker_service.py
===================================================================
--- bin/tracker_service.py (Revision 28738)
+++ bin/tracker_service.py (Arbeitskopie)
@@ -624,7 +624,7 @@
H2('Security announcements'),
make_table(gen_bug_list(self.db.getDSAsForSourcePackage
(self.db.cursor(), pkg)),
- caption=('DSA', 'Description'),
+ caption=('DSA / DLA', 'Description'),
replacement='No known security announcements.')
])
Attachment:
signature.asc
Description: This is a digitally signed message part.