From dd7a954dc188a94f616570e7bcfbea2376ca835c Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Mon, 25 Oct 2010 07:55:03 +0200 Subject: Improvements of the export th HTML (2). --- pyAggr3g470r.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index 0c282680..aeeb63f7 100755 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -1035,7 +1035,8 @@ class Root: f = open(name.replace(' ', '_'), "w") content = htmlheader() content += '\n
\n' - content += "

" + article[2].encode('utf-8') + "


" + content += """

%s


""" % \ + (article[3].encode('utf-8'), article[2].encode('utf-8')) content += article[4].encode('utf-8') content += "
" content += "
\n" -- cgit