From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DBE82158083 for ; Thu, 26 Sep 2024 07:25:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A45FE2A14; Thu, 26 Sep 2024 07:25:30 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0662AE2A14 for ; Thu, 26 Sep 2024 07:25:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 51EEA3431ED for ; Thu, 26 Sep 2024 07:25:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E64ED1EA4 for ; Thu, 26 Sep 2024 07:25:27 +0000 (UTC) From: "Matt Jolly" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Jolly" Message-ID: <1727335519.08570431fe03884631ed495d73027c53396ad024.kangie@gentoo> Subject: [gentoo-commits] proj/chromium-tools:master commit in: / X-VCS-Repository: proj/chromium-tools X-VCS-Files: get-edge-cves.py X-VCS-Directories: / X-VCS-Committer: kangie X-VCS-Committer-Name: Matt Jolly X-VCS-Revision: 08570431fe03884631ed495d73027c53396ad024 X-VCS-Branch: master Date: Thu, 26 Sep 2024 07:25:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: db7a7273-371e-48ea-bc14-40c5739fc6e1 X-Archives-Hash: b5ca78379ba20208539506650103e8cb commit: 08570431fe03884631ed495d73027c53396ad024 Author: Matt Jolly gentoo org> AuthorDate: Thu Sep 26 07:24:35 2024 +0000 Commit: Matt Jolly gentoo org> CommitDate: Thu Sep 26 07:25:19 2024 +0000 URL: https://gitweb.gentoo.org/proj/chromium-tools.git/commit/?id=08570431 get-edge-cves.py: Update bgo output Signed-off-by: Matt Jolly gentoo.org> get-edge-cves.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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