[reportlab-users] platypus/flowables.py typo?

Robin Becker reportlab-users@reportlab.com
Wed, 20 Aug 2003 17:02:06 +0100


In article <20030820121300.GS731@devenoges.com>, Christoph Devenoges
<c@devenoges.com> writes
>hi,
>
>reportlab.Version 1.18
>
>file: reportlab/platypus/flowables.py  line 225:
>
>text = join(self.lines, "\n")
>
>should read?
>
>text = string.join(self.lines, "\n")
>
>or even
>
>text = '\n'.join(self.lines)
>
>is the CVS version ok for production use?
>
>regards,
>
>chris
....thanks I've left it as string.join(self.lines,'\n'), but we're
allowing some string methods to creep in now.
-- 
Robin Becker