From 322cd9ac69c70a8490656fd686427c2336267572 Mon Sep 17 00:00:00 2001 From: imn Date: Tue, 29 Nov 2016 16:37:35 +0300 Subject: [PATCH] Removed parameter "theStudy" in "DumpPython" --- src/PYHELLO/PYHELLO.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/PYHELLO/PYHELLO.py b/src/PYHELLO/PYHELLO.py index 0375766..f6b7caa 100644 --- a/src/PYHELLO/PYHELLO.py +++ b/src/PYHELLO/PYHELLO.py @@ -90,9 +90,10 @@ class PYHELLO(PYHELLO_ORB__POA.PYHELLO_Gen, """ Dump module data to the Python script. """ - def DumpPython( self, study, isPublished, isMultiFile ): + def DumpPython( self, isPublished, isMultiFile ): abuffer = [] names = [] + study = self._naming_service.Resolve("/Study") father = study.FindComponent( moduleName() ) if father: iter = study.NewChildIterator( father ) @@ -103,17 +104,17 @@ class PYHELLO(PYHELLO_ORB__POA.PYHELLO_Gen, pass pass if names: - abuffer += [ "from salome import lcc" ] + abuffer += [ "import salome" ] abuffer += [ "import PYHELLO_ORB" ] abuffer += [ "" ] - abuffer += [ "pyhello = lcc.FindOrLoadComponent( 'FactoryServerPy', '%s' )" % moduleName() ] + abuffer += [ "pyhello = salome.lcc.FindOrLoadComponent( 'FactoryServerPy', '%s' )" % moduleName() ] abuffer += [ "" ] - abuffer += [ "pyhello.createObject( theStudy, '%s' )" % name for name in names ] + abuffer += [ "pyhello.createObject( salome.myStudy, '%s' )" % name for name in names ] abuffer += [ "" ] pass if isMultiFile: abuffer = [ " " + s for s in abuffer ] - abuffer[0:0] = [ "def RebuildData( theStudy ):" ] + abuffer[0:0] = [ "def RebuildData():" ] abuffer += [ " pass" ] abuffer += [ "\0" ] return ("\n".join( abuffer ), 1) -- 2.30.2