From: mnt Date: Fri, 7 Jul 2017 09:23:17 +0000 (+0300) Subject: RNV: replace 'and' by '&&' X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=bd6c379e9901e4d3d4db69dda8d36b4e4f9abda7;p=modules%2Fyacs.git RNV: replace 'and' by '&&' --- diff --git a/src/ParallelContainer/SALOME_ParallelContainer_i.cxx b/src/ParallelContainer/SALOME_ParallelContainer_i.cxx index 14a612934..7a593f665 100644 --- a/src/ParallelContainer/SALOME_ParallelContainer_i.cxx +++ b/src/ParallelContainer/SALOME_ParallelContainer_i.cxx @@ -444,7 +444,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")