From 296ed372f5a0134ad15e3d59b92563456a4178b7 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 14 Feb 2013 08:04:35 +0100 Subject: Removed 'width=50%' parameter for the page of exported articles. --- source/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/export.py') diff --git a/source/export.py b/source/export.py index fe13db9a..b53b21bf 100644 --- a/source/export.py +++ b/source/export.py @@ -112,7 +112,7 @@ def export_html(mongo_db): (article["article_id"], article["article_title"][:150]) + "
\n" a_post = HTML_HEADER(article["article_title"]) - a_post += '
\n' + a_post += '
\n' a_post += """

%s

\n
""" % \ (article["article_link"], article["article_title"]) a_post += article["article_content"] -- cgit