
1 Oct
2009
1 Oct
'09
6:29 p.m.
On Thursday 01 October 2009, Stefan Behnel wrote:
E.TD(*[E.P(p) for p in bio.wp_text.split('\n')]),
Thanks, that does the trick: you're using *args syntax to "delist" the list and make them arguments? Also, when I want to add a valign, I note it has to be:
E.TD(colspan='2', *[E.P(p) for p in bio.wp_text.split('\n')]),
not
E.TD(*[E.P(p) for p in bio.wp_text.split('\n')], colspan='2'),
though I'm not sure why.