diff options
-rwxr-xr-x | source/pyAggr3g470r.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index fb20d95e..fe36e32f 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -1229,8 +1229,8 @@ class Root: pass section = ez_epub.Section() section.title = article["article_title"].decode('utf-8') - section.paragraphs = [utils.clear_string(article["article_description"]).decode('utf-8')] - ez_epub.makeBook(article["article_title"].decode('utf-8'), [feed["feed_title"].decode('utf-8')], [section], \ + section.paragraphs = [utils.clear_string(article["article_content"])] + ez_epub.makeBook(article["article_title"], [feed["feed_title"]], [section], \ os.path.normpath(folder) + "article.epub", lang='en-US', cover=None) return self.article(param) |