From 0934ce73214c22c8e99db3cf52d5258ce8041dbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20M=C3=A9lotte?= Date: Mon, 28 Apr 2025 23:01:18 +0200 Subject: [PATCH] support/scripts/pkg-stats: fix typo in --disable help text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Annoyingly, using "--disable warning" does not disable the warnings checks. It turns out that we look for "warnings" (i.e. with an 's') to know if we should disable the warnings check, so update the help text accordingly. Signed-off-by: Raphaël Mélotte Signed-off-by: Julien Olivain (cherry picked from commit 92e7ab78d6546d822dbeff7282feae4a42e6cbb5) Signed-off-by: Thomas Perale --- support/scripts/pkg-stats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats index c134e1ec06..46b12cd992 100755 --- a/support/scripts/pkg-stats +++ b/support/scripts/pkg-stats @@ -1276,7 +1276,7 @@ def parse_args(): parser.add_argument('--nvd-path', dest='nvd_path', help='Path to the local NVD database', type=resolvepath) parser.add_argument('--disable', type=list_str, - help='Features to disable, comma-separated (cve, upstream, url, warning)', + help='Features to disable, comma-separated (cve, upstream, url, warnings)', default=[]) parser.add_argument('-v', '--verbose', dest='verbose', action='store_true', help='Increase verbosity')