From: Bin Cao <[email protected]> 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 <[email protected]> Signed-off-by: Mathieu Dubois-Briand <[email protected]> (cherry picked from commit a92dfe569844189344fbb5ea0521b2bf7dbf0623) Signed-off-by: Yoann Congal <[email protected]> --- scripts/cve-json-to-text.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/cve-json-to-text.py b/scripts/cve-json-to-text.py index 8d309b37e59..f3386722696 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:
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#236674): https://lists.openembedded.org/g/openembedded-core/message/236674 Mute This Topic: https://lists.openembedded.org/mt/119210632/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
