From c5cdc2c959b037c5d2d681c849177894cc315379 Mon Sep 17 00:00:00 2001 From: abn Date: Fri, 24 Jul 2015 13:48:03 +0200 Subject: [PATCH] create_python_service_instance(): meaningful implementation in Python container. --- src/Container/SALOME_ContainerPy.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Container/SALOME_ContainerPy.py b/src/Container/SALOME_ContainerPy.py index a6fdfffd0..d49dfd3e3 100755 --- a/src/Container/SALOME_ContainerPy.py +++ b/src/Container/SALOME_ContainerPy.py @@ -248,10 +248,9 @@ class SALOME_ContainerPy_i (Engines__POA.Container): #------------------------------------------------------------------------- - def create_python_service_instance(self, CompName) - # not implemented - return "", "" - + def create_python_service_instance(self, CompName): + return self.create_component_instance(CompName, 0) + #------------------------------------------------------------------------- def remove_impl(self, component): -- 2.39.2