summaryrefslogtreecommitdiffstats
path: root/bin/lts-cve-triage.py
diff options
context:
space:
mode:
authorAbhijith PA <abhijith@disroot.org>2020-06-05 18:36:42 +0530
committerAbhijith PA <abhijith@disroot.org>2020-06-05 18:36:42 +0530
commit910ecc2002aeaca80f10024c01a2affee5c81b9a (patch)
treea54cff13dc63d06494eab1d27369be827592021b /bin/lts-cve-triage.py
parent1835df03eea06dc3cc5ec53767af256310f55fa6 (diff)
SyntaxError: closing parenthesis ')' does not match opening
parenthesis '[' Square bracket before RELEASES is unnecessary
Diffstat (limited to 'bin/lts-cve-triage.py')
-rwxr-xr-xbin/lts-cve-triage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/lts-cve-triage.py b/bin/lts-cve-triage.py
index 2191475a6b..5304af1538 100755
--- a/bin/lts-cve-triage.py
+++ b/bin/lts-cve-triage.py
@@ -113,7 +113,7 @@ for pkg in tracker.iterate_packages():
continue
for issue in tracker.iterate_pkg_issues(pkg):
- status_in_lts = issue.get_status([RELEASES['lts'])
+ status_in_lts = issue.get_status(RELEASES['lts'])
status_in_next_lts = issue.get_status(RELEASES['next_lts'])
if status_in_lts.status in ('not-affected', 'resolved'):

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