diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-08 14:33:49 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-08 14:33:49 +0200 |
commit | 9e3c9283f51736c89ae9dfb94589ab5d9871c93e (patch) | |
tree | fdd4c8a7a36021980e2e4af1573072bf7160961b /source | |
parent | fix some bugs in the installation script (diff) | |
download | newspipe-9e3c9283f51736c89ae9dfb94589ab5d9871c93e.tar.gz newspipe-9e3c9283f51736c89ae9dfb94589ab5d9871c93e.tar.bz2 newspipe-9e3c9283f51736c89ae9dfb94589ab5d9871c93e.zip |
Minor bugfix when setting the title of the generated epub
Diffstat (limited to 'source')
-rwxr-xr-x | source/pyAggr3g470r.py | 2 |
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) |