mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-27 01:40:33 +05:00
0022172: [CEA 790] create the groups corresponding to domains
Fix treating a warning sent by algorithm.Compute() - print "Warning" instead of "Error"
This commit is contained in:
parent
401090842f
commit
2c17372e2f
@ -1354,7 +1354,10 @@ class Mesh:
|
||||
if errText: errText += ". "
|
||||
errText += err.comment
|
||||
if allReasons != "":allReasons += "\n"
|
||||
allReasons += '- "%s" failed%s. Error: %s' %(err.algoName, shapeText, errText)
|
||||
if ok:
|
||||
allReasons += '- "%s"%s - %s' %(err.algoName, shapeText, errText)
|
||||
else:
|
||||
allReasons += '- "%s" failed%s. Error: %s' %(err.algoName, shapeText, errText)
|
||||
pass
|
||||
|
||||
# Treat hyp errors
|
||||
|
Loading…
Reference in New Issue
Block a user