summaryrefslogtreecommitdiffstats
path: root/bin/lts-cve-triage.py
diff options
context:
space:
mode:
authorMike Gabriel <sunweaver@debian.org>2016-01-12 14:48:42 +0000
committerMike Gabriel <sunweaver@debian.org>2016-01-12 14:48:42 +0000
commit441c57429b88276f6835fc8cc1dbb6930084a686 (patch)
tree1ee77627f835e27d2b9c5399f27ed4acaa522d57 /bin/lts-cve-triage.py
parente123ab145335a70d22ae2e29ad3392ba7b9b87f2 (diff)
bin/lts-cve-triage.py: Improve headlines for package-to-triage overview.
git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@38865 e39458fd-73e7-0310-bf30-c45bca0a0e42
Diffstat (limited to 'bin/lts-cve-triage.py')
-rwxr-xr-xbin/lts-cve-triage.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/bin/lts-cve-triage.py b/bin/lts-cve-triage.py
index bd2478208a..546950be2b 100755
--- a/bin/lts-cve-triage.py
+++ b/bin/lts-cve-triage.py
@@ -20,21 +20,22 @@ import collections
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: []))

© 2014-2024 Faster IT GmbH | imprint | privacy policy