aboutsummaryrefslogtreecommitdiff
path: root/source/export.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-08 08:24:30 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-08 08:24:30 +0100
commit8509b42b3bf47bf6b404729408de59473898b0e0 (patch)
treeed518853ac794fbd33d0a22e2741cfb4af86471b /source/export.py
parentAdded generation date for the html export. (diff)
downloadnewspipe-8509b42b3bf47bf6b404729408de59473898b0e0.tar.gz
newspipe-8509b42b3bf47bf6b404729408de59473898b0e0.tar.bz2
newspipe-8509b42b3bf47bf6b404729408de59473898b0e0.zip
Improved HTML output of the export..
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 75c2f0eb..cc88eab2 100644
--- a/source/export.py
+++ b/source/export.py
@@ -163,7 +163,7 @@ def export_html(mongo_db):
# directories already exists (not a problem)
pass
- index += """<li><a href="%s">%s</a></li>\n""" % \
+ index += """ <li><a href="%s">%s</a></li>\n""" % \
(feed["feed_id"], feed["feed_title"])
posts = HTML_HEADER(feed["feed_title"], "../style.css")
bgstack15