Salome HOME
PR: comment debug print
[modules/smesh.git] / src / SMESH_SWIG / smesh.py
index b3b24f537966980ee6fe88f134c6ef412fc82c45..0c62821bb6a901f4ffd235e5e387e1c82c975b44 100644 (file)
@@ -32,7 +32,7 @@
 import salome
 from salome import *
 
-from salome.geom import geompy
+import geompy
 import SMESH, SALOMEDS
 from salome.smesh import smeshBuilder
 #from smeshBuilder import *
@@ -49,10 +49,10 @@ except:
 
 # load plugins and add dynamically generated methods to Mesh class,
 # the same for for global variables declared by plug-ins
-from smeshBuilder import Mesh, algoCreator
+from salome.smesh.smeshBuilder import Mesh, algoCreator
 for pluginName in os.environ[ "SMESH_MeshersList" ].split( ":" ):
     #
-    print "pluginName: ", pluginName
+    #print "pluginName: ", pluginName
     pluginBuilderName = pluginName + "Builder"
     try:
         exec( "from salome.%s.%s import *" % (pluginName, pluginBuilderName))