From: <mva...@us...> - 2011-08-08 06:16:52
|
Revision: 370 http://mevislabmodules.svn.sourceforge.net/mevislabmodules/?rev=370&view=rev Author: mvanstralen Date: 2011-08-08 06:16:47 +0000 (Mon, 08 Aug 2011) Log Message: ----------- Fixed erroneous success report in the purely theoretical case that Elastix would crash Modified Paths: -------------- trunk/Community/General/Modules/Macros/Elastix/CallElastix.py Modified: trunk/Community/General/Modules/Macros/Elastix/CallElastix.py =================================================================== --- trunk/Community/General/Modules/Macros/Elastix/CallElastix.py 2011-08-08 06:15:30 UTC (rev 369) +++ trunk/Community/General/Modules/Macros/Elastix/CallElastix.py 2011-08-08 06:16:47 UTC (rev 370) @@ -163,6 +163,7 @@ callTransformix(ctx.field("createDeformationImage").value, ctx.field("createJacobianImage").value, ctx.field("createJacobianMatrixImage").value); else : print "elastix failed"; + ctx.field("succeeded").value = False; else : ctx.field("succeeded").value = False; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |