summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'get-edge-cves.py')
-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