diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-08 08:24:30 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-08 08:24:30 +0100 |
commit | 8509b42b3bf47bf6b404729408de59473898b0e0 (patch) | |
tree | ed518853ac794fbd33d0a22e2741cfb4af86471b /source | |
parent | Added generation date for the html export. (diff) | |
download | newspipe-8509b42b3bf47bf6b404729408de59473898b0e0.tar.gz newspipe-8509b42b3bf47bf6b404729408de59473898b0e0.tar.bz2 newspipe-8509b42b3bf47bf6b404729408de59473898b0e0.zip |
Improved HTML output of the export..
Diffstat (limited to 'source')
-rw-r--r-- | source/export.py | 2 |
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") |