Mercurial > moin > 1.9
changeset 3047:2b9a5f26f7b0
fix NameError exception in gui converter (ported from 1.6)
author | Reimar Bauer <rb.proj AT googlemail DOT com> |
---|---|
date | Tue, 19 Feb 2008 23:15:17 +0100 |
parents | 596d4a8ba580 |
children | 1e9444f35a22 |
files | MoinMoin/converter/text_html_text_moin_wiki.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/converter/text_html_text_moin_wiki.py Tue Feb 19 23:12:08 2008 +0100 +++ b/MoinMoin/converter/text_html_text_moin_wiki.py Tue Feb 19 23:15:17 2008 +0100 @@ -1269,7 +1269,7 @@ desc = self.get_desc(node.childNodes) if desc: - desc = '|' + text + desc = '|' + desc params = ','.join(['%s="%s"' % (k, v) for k, v in attrs.items()]) # if k in ('width', 'height', )])