diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-26 19:28:45 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-26 19:28:45 +0100 |
commit | a1aedd7f0ce8a9d0d74a6fc9ae00ef4882fb2f4d (patch) | |
tree | 042f95da52fcad159546778f1e3fae6b3b5d47ef | |
parent | Now using html.parser for BeautifulSoup since this parser makes no attempt to... (diff) | |
download | newspipe-a1aedd7f0ce8a9d0d74a6fc9ae00ef4882fb2f4d.tar.gz newspipe-a1aedd7f0ce8a9d0d74a6fc9ae00ef4882fb2f4d.tar.bz2 newspipe-a1aedd7f0ce8a9d0d74a6fc9ae00ef4882fb2f4d.zip |
Get Unicode string of the output of BeautifulSoup.
-rwxr-xr-x | source/feedgetter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/feedgetter.py b/source/feedgetter.py index bdb46238..f3fa5c07 100755 --- a/source/feedgetter.py +++ b/source/feedgetter.py @@ -132,8 +132,8 @@ class FeedGetter(object): description = article.description except Exception: description = "" - description = str(BeautifulSoup(description, "html.parser")) - article_title = str(BeautifulSoup(article.title, "html.parser")) + description = BeautifulSoup(description, "html.parser").decode() + article_title = BeautifulSoup(article.title, "html.parser").decode() try: post_date = datetime(*article.published_parsed[:6]) except: |