diff mbox series

[1/2] scripts/cve-json-to-text.py: remove unused options

Message ID 20250425134137.4148001-1-antonin.godard@bootlin.com
State New
Headers show
Series [1/2] scripts/cve-json-to-text.py: remove unused options | expand

Commit Message

Antonin Godard April 25, 2025, 1:40 p.m. UTC
Remove --all and -a and they are unused in the file.
Remove long options as they don't actually exist when using getopt.

Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
 scripts/cve-json-to-text.py | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/scripts/cve-json-to-text.py b/scripts/cve-json-to-text.py
index 87a5669987..a2eb592f5f 100755
--- a/scripts/cve-json-to-text.py
+++ b/scripts/cve-json-to-text.py
@@ -48,12 +48,9 @@  def parse_args(argv):
     except getopt.GetoptError:
         show_syntax_and_exit(1)
     for opt, arg in opts:
-        if opt in ("-h", "--help"):
+        if opt in ("-h"):
             show_syntax_and_exit(0)
-        elif opt in ("-a", "--all"):
-            show_all = True
-            show_unknown = True
-        elif opt in ("-i", "--input"):
+        elif opt in ("-i"):
             infile = arg
 
 def load_json(filename):