aboutsummaryrefslogtreecommitdiff
path: root/source/export.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-02-14 08:04:35 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-02-14 08:04:35 +0100
commit296ed372f5a0134ad15e3d59b92563456a4178b7 (patch)
treefcb17e77251f330fd50c247145691a3394632013 /source/export.py
parentBugfix: little hack due to the presence of '%' in the string. (diff)
downloadnewspipe-296ed372f5a0134ad15e3d59b92563456a4178b7.tar.gz
newspipe-296ed372f5a0134ad15e3d59b92563456a4178b7.tar.bz2
newspipe-296ed372f5a0134ad15e3d59b92563456a4178b7.zip
Removed 'width=50%' parameter for the page of exported articles.
Diffstat (limited to 'source/export.py')
-rw-r--r--source/export.py2
1 files changed, 1 insertions, 1 deletions
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]) + "<br />\n"
a_post = HTML_HEADER(article["article_title"])
- a_post += '<div style="width: 50%; overflow:hidden; text-align: justify; margin:0 auto">\n'
+ a_post += '<div style="overflow:hidden; text-align: justify; margin:0 auto">\n'
a_post += """<h1><a href="%s">%s</a></h1>\n<br />""" % \
(article["article_link"], article["article_title"])
a_post += article["article_content"]
bgstack15