From: jfa Date: Mon, 1 Jul 2013 06:39:49 +0000 (+0000) Subject: Mantis issue 0022237: Study dump produces a Python code containing syntax errors X-Git-Tag: V6_7_0 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=5476768d0e14585d2d59856f31f86f3cac04f3cc;p=modules%2Fgeom.git Mantis issue 0022237: Study dump produces a Python code containing syntax errors --- diff --git a/src/GEOMImpl/GEOMImpl_IBlocksOperations.cxx b/src/GEOMImpl/GEOMImpl_IBlocksOperations.cxx index efb69f42c..3640533b6 100644 --- a/src/GEOMImpl/GEOMImpl_IBlocksOperations.cxx +++ b/src/GEOMImpl/GEOMImpl_IBlocksOperations.cxx @@ -634,13 +634,11 @@ Handle(GEOM_Object) GEOMImpl_IBlocksOperations::GetVertexNearPoint anArray->SetValue(1, anIndices.FindIndex(V)); aResult = GetEngine()->AddSubShape(theShape, anArray); - // The GetPoint() doesn't change object so no new function is required. - Handle(GEOM_Function) aFunction = theShape->GetLastFunction(); + Handle(GEOM_Function) aFunction = aResult->GetLastFunction(); // Make a Python command - GEOM::TPythonDump(aFunction, /*append=*/true) - << aResult << " = geompy.GetVertexNearPoint(" - << theShape << ", " << thePoint << ")"; + GEOM::TPythonDump(aFunction) << aResult << " = geompy.GetVertexNearPoint(" + << theShape << ", " << thePoint << ")"; SetErrorCode(OK); return aResult;