From bcf32434320f5db82895b1c269902d93c9894339 Mon Sep 17 00:00:00 2001 From: SPN Salome - CEA Date: Mon, 22 Jan 2018 16:25:22 +0100 Subject: [PATCH] Artifact 10464 : Correct the 'launcher_name' field in APPLICATION.profile --- src/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__init__.py b/src/__init__.py index e8a8928..13e8a18 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -144,7 +144,7 @@ def get_launcher_name(config): :rtype: str ''' check_config_has_application(config) - if 'profile' in config.APPLICATION and 'launcher_name=' in config.APPLICATION.profile: + if 'profile' in config.APPLICATION and 'launcher_name' in config.APPLICATION.profile: launcher_name = config.APPLICATION.profile.launcher_name else: launcher_name = 'salome' -- 2.39.2