From: rahuel Date: Thu, 9 Feb 2006 16:37:38 +0000 (+0000) Subject: _get_machineName() does not exist in container interface : replaced by getHostName() X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8df8c94427f77884b1245e3925723d3238a61d99;p=modules%2Fkernel.git _get_machineName() does not exist in container interface : replaced by getHostName() --- diff --git a/src/TestContainer/TestComponentPy.py b/src/TestContainer/TestComponentPy.py index 2dacf6dbb..c1f467441 100755 --- a/src/TestContainer/TestComponentPy.py +++ b/src/TestContainer/TestComponentPy.py @@ -62,7 +62,7 @@ except CosNaming.NamingContext.NotFound, ex: sys.exit(1) container = obj._narrow(Engines.Container) -print container._get_machineName() +print container.getHostName() comp = container.load_impl("SALOME_TestComponentPy","SALOME_TestComponentPy") print comp._get_instanceName() comp.ping()