From 451534233b0c5dd96f9139b88830988a94dc0f9a Mon Sep 17 00:00:00 2001 From: rnv Date: Tue, 23 May 2017 18:52:16 +0300 Subject: [PATCH] Python3 porting: some options of runSalome.py scripts don't work. --- bin/launchConfigureParser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/launchConfigureParser.py b/bin/launchConfigureParser.py index 046f88664..4ea79d03c 100755 --- a/bin/launchConfigureParser.py +++ b/bin/launchConfigureParser.py @@ -488,7 +488,7 @@ def check_standalone(option, opt, value, parser): pass def store_boolean (option, opt, value, parser, *args): - if isinstance(value, bytes): + if isinstance(value, bytes) or isinstance(value, str): try: value_conv = booleans[value.strip().lower()] for attribute in args: -- 2.39.2