From 9e3c9283f51736c89ae9dfb94589ab5d9871c93e Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 8 Apr 2013 14:33:49 +0200 Subject: Minor bugfix when setting the title of the generated epub --- source/pyAggr3g470r.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index 282ec600..7319cb05 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -663,7 +663,7 @@ class pyAggr3g470r(object): # directories already exists (not a problem) pass section = ez_epub.Section() - section.title = article["article_title"].decode('utf-8') + section.title = article["article_title"] 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) -- cgit