0020308: EDF 995 GEOM : Closed Polyline with tangence

Fix problem with python dump
This commit is contained in:
vsr 2010-05-05 08:38:21 +00:00
parent 5c7202290c
commit 88f9edb95b

View File

@ -723,7 +723,9 @@ Handle(GEOM_Object) GEOMImpl_ICurvesOperations::MakeSplineInterpolation
while (it != thePoints.end()) {
pd << ", " << (*it++);
}
pd << "])";
pd << "]";
if ( theIsClosed ) pd << ", True";
pd << ")";
SetErrorCode(OK);
return aSpline;