diff options
author | cedricbonhomme <devnull@localhost> | 2010-10-25 15:07:55 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2010-10-25 15:07:55 +0200 |
commit | 80beb564db86bb6e1221578667f806eba81eeb49 (patch) | |
tree | 48efb8e1af2723cc1c0dcb1531d4310e4701a3a8 | |
parent | Minor bugfix. (diff) | |
download | newspipe-80beb564db86bb6e1221578667f806eba81eeb49.tar.gz newspipe-80beb564db86bb6e1221578667f806eba81eeb49.tar.bz2 newspipe-80beb564db86bb6e1221578667f806eba81eeb49.zip |
Minor bugfix.
-rwxr-xr-x | pyAggr3g470r.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index fd71fc30..37a2803f 100755 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -1045,11 +1045,11 @@ class Root: for article in self.articles[rss_feed_id]: try: name = article[1].strip().replace(' ', '_') - f = open(name, "w") # Export all articles in HTML format if export_method == "export_HTML": name = os.path.normpath(folder + "/" + name + ".html") + f = open(name, "w") content = htmlheader() content += '\n<div style="width: 50%; overflow:hidden; text-align: justify; margin:0 auto">\n' content += """<h1><a href="%s">%s</a></h1><br />""" % \ @@ -1060,6 +1060,7 @@ class Root: # Export all articles in raw text elif export_method == "export_TXT": name = os.path.normpath(folder + "/" + name + ".txt") + f = open(name, "w") content = "Title: " + article[2].encode('utf-8') + "\n\n\n" content += utils.clear_string(article[4].encode('utf-8')) |