| Message ID | 20260420024237.2218341-1-bin.cao.cn@windriver.com |
|---|---|
| State | Under Review |
| Headers | show |
| Series | scripts/cve-json-to-text.py: simplify getopt argument parsing | expand |
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:
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 <bin.cao.cn@windriver.com> --- scripts/cve-json-to-text.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)