aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-04-08 14:33:49 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-04-08 14:33:49 +0200
commit9e3c9283f51736c89ae9dfb94589ab5d9871c93e (patch)
treefdd4c8a7a36021980e2e4af1573072bf7160961b
parentfix some bugs in the installation script (diff)
downloadnewspipe-9e3c9283f51736c89ae9dfb94589ab5d9871c93e.tar.gz
newspipe-9e3c9283f51736c89ae9dfb94589ab5d9871c93e.tar.bz2
newspipe-9e3c9283f51736c89ae9dfb94589ab5d9871c93e.zip
Minor bugfix when setting the title of the generated epub
-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