From 0c1a53cebdeb41634b47b3f670fc5eeecd660cda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Barros?= Date: Thu, 31 Aug 2023 15:59:51 -0300 Subject: [PATCH] Small parser argument fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This review aims to fix a little bug in the "yes-to-all" argument in the parser file of the installation script. Task: 48626 Story: 2005051 Change-Id: Ib3e36a6735ec3a413b27a81c0039f2f03b978f3c Signed-off-by: Tomás Barros --- virtualbox/pybox/Parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtualbox/pybox/Parser.py b/virtualbox/pybox/Parser.py index 1fc3c04..06e10d1 100644 --- a/virtualbox/pybox/Parser.py +++ b/virtualbox/pybox/Parser.py @@ -314,7 +314,7 @@ def parse_networking(parser: ArgumentParser): """, type=str, default='32000') - parser.add_argument("--y", "--yes-to-all", help= + parser.add_argument("-y", "--yes-to-all", help= """ Automatically answers all yes/no prompts with yes. """,