[Zope] Still an error in Structured text

Robert Rottermann robert@redcor.ch
Mon, 5 Nov 2001 22:52:21 +0100


Line 908 of DocumentClass.py still reads:
return (StructuredTextInnerLink(s[start2+1,end2-1],start2,end2))

it should be:
return (StructuredTextInnerLink(s[start2+1:end2-1],start2,end2))

note the colon in [start2+1:end2-1]

Robert