diff mbox series

utils/genrandconfig: fix fallout of dropping toolchain CSV

Message ID 20240820064531.3680998-1-yann.morin.1998@free.fr
State Accepted
Headers show
Series utils/genrandconfig: fix fallout of dropping toolchain CSV | expand

Commit Message

Yann E. MORIN Aug. 20, 2024, 6:45 a.m. UTC
Commit 2f260084d577 (utils/genrandconfig: remove support for toolchain
CSV) kept the --no-toolchains-csv option, but in the rework forgot to
keep it as a bool, while argparse default is to expect a string.

Rather than re-introduce the action="store_true" which implies the
argument is a bool, explicit make it a bool.

Fixes: 2f260084d5771728f3340ff6a86a23391133a635

Reported-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
 utils/genrandconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Petazzoni Aug. 20, 2024, 9:22 p.m. UTC | #1
On Tue, 20 Aug 2024 08:45:31 +0200
"Yann E. MORIN" <yann.morin.1998@free.fr> wrote:

> Commit 2f260084d577 (utils/genrandconfig: remove support for toolchain
> CSV) kept the --no-toolchains-csv option, but in the rework forgot to
> keep it as a bool, while argparse default is to expect a string.
> 
> Rather than re-introduce the action="store_true" which implies the
> argument is a bool, explicit make it a bool.
> 
> Fixes: 2f260084d5771728f3340ff6a86a23391133a635
> 
> Reported-by: James Hilliard <james.hilliard1@gmail.com>
> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> ---
>  utils/genrandconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
Peter Korsgaard Sept. 18, 2024, 11:11 a.m. UTC | #2
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > Commit 2f260084d577 (utils/genrandconfig: remove support for toolchain
 > CSV) kept the --no-toolchains-csv option, but in the rework forgot to
 > keep it as a bool, while argparse default is to expect a string.

 > Rather than re-introduce the action="store_true" which implies the
 > argument is a bool, explicit make it a bool.

 > Fixes: 2f260084d5771728f3340ff6a86a23391133a635

 > Reported-by: James Hilliard <james.hilliard1@gmail.com>
 > Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
 > Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>

Committed to 2024.02.x, thanks.
diff mbox series

Patch

diff --git a/utils/genrandconfig b/utils/genrandconfig
index 8e60fd3f9e..ae1f0f85de 100755
--- a/utils/genrandconfig
+++ b/utils/genrandconfig
@@ -611,7 +611,7 @@  if __name__ == '__main__':
                         help="Buildroot directory (relative to current directory)",
                         type=str, default='.')
     parser.add_argument("--toolchains-csv", help="Legacy, unused", type=str)
-    parser.add_argument("--no-toolchains-csv", help="Legacy, unused")
+    parser.add_argument("--no-toolchains-csv", help="Legacy, unused", type=bool)
 
     args = parser.parse_args()