From: mnt Date: Fri, 7 Jul 2017 09:23:17 +0000 (+0300) Subject: RNV: replace 'and' by '&&' X-Git-Tag: V9_0_0~19 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=c13c51c6d2eb0d595eaadf17895321c70f711f48;p=modules%2Fkernel.git RNV: replace 'and' by '&&' --- diff --git a/src/ParallelContainer/SALOME_ParallelContainer_i.cxx b/src/ParallelContainer/SALOME_ParallelContainer_i.cxx index 318c0191c..29287cf2f 100644 --- a/src/ParallelContainer/SALOME_ParallelContainer_i.cxx +++ b/src/ParallelContainer/SALOME_ParallelContainer_i.cxx @@ -432,7 +432,7 @@ Engines_Parallel_Container_i::create_component_instance_env(const char*genericRe void* handle = _library_map[impl_name]; if (handle) type_of_lib = "cpp"; - if (_library_map.count(aCompName) != 0 and !handle) + if (_library_map.count(aCompName) != 0 && !handle) type_of_lib = "python"; if (type_of_lib == "Not Loaded")