aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-11-03 14:19:45 +0100
committercedricbonhomme <devnull@localhost>2010-11-03 14:19:45 +0100
commita5d576d5ead1cf9927fcef03e4669ae22ecc65d5 (patch)
treed6c4890d1bf6a1210c9ab5cc4ea0235d1f31ddd6
parentExport of the base of articles for 'dokuwiki'. Example: http://wiki.cedricbon... (diff)
downloadnewspipe-a5d576d5ead1cf9927fcef03e4669ae22ecc65d5.tar.gz
newspipe-a5d576d5ead1cf9927fcef03e4669ae22ecc65d5.tar.bz2
newspipe-a5d576d5ead1cf9927fcef03e4669ae22ecc65d5.zip
Minor bug fix (removed a useless </html> tag).
-rwxr-xr-xpyAggr3g470r.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 40e00a4d..dea9aaea 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -1068,8 +1068,7 @@ class Root:
content += """<h1><a href="%s">%s</a></h1><br />""" % \
(article[3].encode('utf-8'), article[2].encode('utf-8'))
content += article[4].encode('utf-8')
- content += "</div></html>\n<hr />\n"
- content += htmlfooter
+ content += '</div>\n<hr />Generated with <a href="http://bitbucket.org/cedricbonhomme/pyaggr3g470r/">pyAggr3g470r</a>\n</html>'
# Export all articles in raw text
elif export_method == "export_TXT":
name = os.path.normpath(folder + "/" + name + ".txt")
bgstack15