From df47f57490e692a7da69403d49327af8e94fa6f3 Mon Sep 17 00:00:00 2001 From: ptv Date: Fri, 12 May 2006 06:50:33 +0000 Subject: [PATCH] correct after SWP12334 --- src/KERNEL_PY/salome_shared_modules.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/KERNEL_PY/salome_shared_modules.py b/src/KERNEL_PY/salome_shared_modules.py index 92bcbc603..3e492613f 100755 --- a/src/KERNEL_PY/salome_shared_modules.py +++ b/src/KERNEL_PY/salome_shared_modules.py @@ -72,10 +72,10 @@ list_modules=[] # Import all *_shared_modules in the path and store them in list_modules path=salome_path.split(":") -print "...SALOME_PATH = " -print salome_path -print "...PATH = "path -print path +#print "...SALOME_PATH = " +#print salome_path +#print "...PATH = " +#print path for rep in path: # Import all *_shared_modules in rep @@ -84,9 +84,9 @@ for rep in path: try: name=os.path.splitext(os.path.basename(f))[0] register_name(name) - print name + " REGISTERED" + #print name + " REGISTERED" m=__import__(name) - print name + " IMPORTED" + #print name + " IMPORTED" list_modules.append(m) except: print "Exception during register and import shared module" @@ -98,6 +98,6 @@ for rep in path: # for name,module in sys.modules.items(): if import_hook.is_shared(name) and shared_imported.get(name) is None: - #print "Module shared added to shared_imported: ",name + print "Module shared added to shared_imported: ",name shared_imported[name]=module -- 2.39.2