aboutsummaryrefslogtreecommitdiff
path: root/export.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-10-24 18:21:21 +0200
committercedricbonhomme <devnull@localhost>2011-10-24 18:21:21 +0200
commit64fda1629cb71b2dca130f1d3ac1a9ab98c3a9b4 (patch)
tree5697ba5d4f50138b81a3bc87a0fa8ce812f58ff0 /export.py
parentAdded export.py. This file will gather all the export functions. (diff)
downloadnewspipe-64fda1629cb71b2dca130f1d3ac1a9ab98c3a9b4.tar.gz
newspipe-64fda1629cb71b2dca130f1d3ac1a9ab98c3a9b4.tar.bz2
newspipe-64fda1629cb71b2dca130f1d3ac1a9ab98c3a9b4.zip
Minor bugfix in export.py
Diffstat (limited to 'export.py')
-rw-r--r--export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/export.py b/export.py
index ee2a6938..3157415c 100644
--- a/export.py
+++ b/export.py
@@ -26,7 +26,7 @@ def export_webzine(feeds):
"""
"""
index = htmlheader
- index = "<br />\n<ul>"
+ index += "<br />\n<ul>"
for feed in feeds.values():
# creates a folder for each stream
feed_folder = utils.path + "/var/export/webzine/" + \
bgstack15