diff options
-rwxr-xr-x | pyAggr3g470r.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index 2f3ed2a0..fd71fc30 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(' ', '_') - name = os.path.normpath(folder + "/" + name + ".html") f = open(name, "w") # Export all articles in HTML format if export_method == "export_HTML": + name = os.path.normpath(folder + "/" + name + ".html") 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 />""" % \ @@ -1059,6 +1059,7 @@ class Root: content += htmlfooter # Export all articles in raw text elif export_method == "export_TXT": + name = os.path.normpath(folder + "/" + name + ".txt") content = "Title: " + article[2].encode('utf-8') + "\n\n\n" content += utils.clear_string(article[4].encode('utf-8')) |