aboutsummaryrefslogtreecommitdiff
path: root/source/export.py
diff options
context:
space:
mode:
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