summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Jolly <kangie@gentoo.org>2024-09-26 17:24:35 +1000
committerMatt Jolly <kangie@gentoo.org>2024-09-26 17:25:19 +1000
commit08570431fe03884631ed495d73027c53396ad024 (patch)
treead8ebe55eeb7d2a775a2d05d1aaa10c9ed4fa912
parentget-edge-cves.py: New functionality (diff)
downloadchromium-tools-08570431fe03884631ed495d73027c53396ad024.tar.gz
chromium-tools-08570431fe03884631ed495d73027c53396ad024.tar.bz2
chromium-tools-08570431fe03884631ed495d73027c53396ad024.zip
get-edge-cves.py: Update bgo output
Signed-off-by: Matt Jolly <kangie@gentoo.org>
-rwxr-xr-xget-edge-cves.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/get-edge-cves.py b/get-edge-cves.py
index 72e68f8..515c986 100755
--- a/get-edge-cves.py
+++ b/get-edge-cves.py
@@ -157,7 +157,7 @@ def get_cve_from_bug_alias(bugnumber: int) -> list[str]:
bzapi = bugzilla.Bugzilla(url, api_key)
bug = bzapi.getbug(bugnumber)
cves = bug.alias
- print(f'Bug: {bug} has {len(cves)} CVEs.')
+ print(f'Bug: {bug} has {len(cves)} CVEs:\n\t{', '.join(cves)}')
return cves