mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-14 10:40:34 +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 += ". "
|
if errText: errText += ". "
|
||||||
errText += err.comment
|
errText += err.comment
|
||||||
if allReasons != "":allReasons += "\n"
|
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
|
pass
|
||||||
|
|
||||||
# Treat hyp errors
|
# Treat hyp errors
|
||||||
|
Loading…
Reference in New Issue
Block a user