From: ptv Date: Fri, 12 May 2006 06:50:33 +0000 (+0000) Subject: correct after SWP12334 X-Git-Tag: LAST_STABLE_VERSION_21_09_2006_ON_3_2_0~45 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=df47f57490e692a7da69403d49327af8e94fa6f3;p=modules%2Fkernel.git correct after SWP12334 --- 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