Comment 7 for bug 483102

Revision history for this message
Naresh(OpenERP) (nch-openerp) wrote : Re: Report Engine : Continuous spaces are replaced by one space.

Hello,

After doing some what R&D on reportLab platypus.Paragraph I found that this class itself is the culprit for replacing the spaces.

You can check /usr/share/pyshared/reportlab/platypus/paragraph.py line no 96 def _lineClean which is called from def cleanBlockQuotedText on line 99 and which inturn is called from __init__ of class Paragraph 's
self._setup(text, style, bulletText, frags, cleanBlockQuotedText) and in this function _setup the cleanBlockQuotedText is called.

Thanks