From: Bin Cao Date: Mon, 20 Apr 2026 02:42:37 +0000 (+0800) Subject: scripts/cve-json-to-text.py: simplify getopt argument parsing X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=a92dfe569844189344fbb5ea0521b2bf7dbf0623;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git scripts/cve-json-to-text.py: simplify getopt argument parsing Remove unused long options from getopt.getopt() call. The long options "help", "input", and "output" were never handled in the option parsing logic, so they are dead code. Signed-off-by: Bin Cao Signed-off-by: Mathieu Dubois-Briand --- diff --git a/scripts/cve-json-to-text.py b/scripts/cve-json-to-text.py index 8d309b37e5..f338672269 100755 --- a/scripts/cve-json-to-text.py +++ b/scripts/cve-json-to-text.py @@ -42,9 +42,7 @@ def parse_args(argv): """ global infile, outfile try: - opts, args = getopt.getopt( - argv, "hi:o:", ["help", "input", "output"] - ) + opts, args = getopt.getopt(argv, "hi:o:") except getopt.GetoptError: show_syntax_and_exit(1) for opt, arg in opts: