[Secure-testing-commits] r38865 - bin

Mike Gabriel sunweaver at moszumanska.debian.org
Tue Jan 12 14:48:42 UTC 2016


Author: sunweaver
Date: 2016-01-12 14:48:42 +0000 (Tue, 12 Jan 2016)
New Revision: 38865

Modified:
   bin/lts-cve-triage.py
Log:
bin/lts-cve-triage.py: Improve headlines for package-to-triage overview.

Modified: bin/lts-cve-triage.py
===================================================================
--- bin/lts-cve-triage.py	2016-01-12 13:56:28 UTC (rev 38864)
+++ bin/lts-cve-triage.py	2016-01-12 14:48:42 UTC (rev 38865)
@@ -20,21 +20,22 @@
 
 from tracker_data import TrackerData, RELEASES
 
+this_lts = RELEASES['lts']
 next_lts = RELEASES['next_lts']
 
 LIST_NAMES = (
     ('triage_already_in_dsa_needed',
-     'Issues to triage that are in dsa-needed'),
+     'Issues to triage for {this_lts} that are already in dsa-needed'.format(this_lts=this_lts)),
     ('triage_likely_nodsa',
-     'Issues to triage that are nodsa in {}'.format(next_lts)),
+     'Issues to triage for {this_lts} that are no-dsa in {next_lts}'.format(this_lts=this_lts, next_lts=next_lts)),
     ('triage_other',
      'Other issues to triage (no special status)'),
     ('triage_other_not_triaged_in_next_lts',
-     'Other issues to triage (not yet triaged in {})'.format(next_lts)),
+     'Other issues to triage for {this_lts} (not yet triaged for {next_lts})'.format(this_lts=this_lts, next_lts=next_lts)),
     ('unexpected_nodsa',
-     'Issues tagged no-dsa that are open in {}'.format(next_lts)),
+     'Issues tagged no-dsa in {this_lts} that are open in {next_lts}'.format(this_lts=this_lts, next_lts=next_lts)),
     ('possible_easy_fixes',
-     'Issues that are already fixed in {}'.format(next_lts)),
+     'Issues from dla-needed.txt that are already fixed in {next_lts}'.format(next_lts=next_lts)),
 )
 
 lists = collections.defaultdict(lambda: collections.defaultdict(lambda: []))




More information about the Secure-testing-commits mailing list