]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
PN ajout de try except autour de SMESH et GEOM (pour rendre indépendante l installation) V3_2_3_pre1
authorPascale Noyret <pascale.noyret@edf.fr>
Fri, 1 Dec 2006 10:08:16 +0000 (10:08 +0000)
committerPascale Noyret <pascale.noyret@edf.fr>
Fri, 1 Dec 2006 10:08:16 +0000 (10:08 +0000)
src/STUDY/EficasStudy.py

index 4c94c26b6332e6027d9cca4b45f02715b885ebcc..2461546328cf6fde6d6aeaf1807cc661f8fde504 100644 (file)
@@ -3,8 +3,14 @@ import salomedsgui
 import salome
 
 import SALOMEDS
-import GEOM
-import SMESH
+try :
+    import SMESH
+except :
+    pass
+try :
+    import SMESH
+except :
+    pass
 
 from Logger import Logger
 logger=Logger( "EficasStudy" )
@@ -258,8 +264,8 @@ class SalomeStudy(   salomedsgui.guiDS ):
             import sys
             type        = sys.exc_info()[0]
             value       = sys.exc_info()[1]            
-            print '>>>>CS_Pbruno StudyTree.getMainShapeEntry( entry = %s ) ' %entry
-            print 'type        = %s ,             value       = %s '%( type, value )
+            #print '>>>>CS_Pbruno StudyTree.getMainShapeEntry( entry = %s ) ' %entry
+            #print 'type        = %s ,             value       = %s '%( type, value )
             result = None
            
         return result
@@ -289,8 +295,8 @@ class SalomeStudy(   salomedsgui.guiDS ):
             import sys
             type        = sys.exc_info()[0]
             value       = sys.exc_info()[1]            
-            print '>>>>CS_Pbruno StudyTree.sameMainShape(  shapeEntry1 = %s , shapeEntry2 = %s )'%( shapeEntry1, shapeEntry2 )
-            print 'type        = %s ,             value       = %s '%( type, value )
+            #print '>>>>CS_Pbruno StudyTree.sameMainShape(  shapeEntry1 = %s , shapeEntry2 = %s )'%( shapeEntry1, shapeEntry2 )
+            #print 'type        = %s ,             value       = %s '%( type, value )
             result = None
            
         return result