aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsource/pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
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)
bgstack15