diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-03 07:19:41 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-04-03 07:19:41 +0200 |
commit | 1327a6dcb987e0d706d2be1dcbf15ce4d1c12774 (patch) | |
tree | b79567dfd6a0fccb7c09706cd58638d8cc98a888 /source | |
parent | Updated revision date. (diff) | |
download | newspipe-1327a6dcb987e0d706d2be1dcbf15ce4d1c12774.tar.gz newspipe-1327a6dcb987e0d706d2be1dcbf15ce4d1c12774.tar.bz2 newspipe-1327a6dcb987e0d706d2be1dcbf15ce4d1c12774.zip |
Changed the message whe BeautifulSoup fails to sanitize the description of the article.
Diffstat (limited to 'source')
-rwxr-xr-x | source/feedgetter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/feedgetter.py b/source/feedgetter.py index 0ea31dc4..6adf013d 100755 --- a/source/feedgetter.py +++ b/source/feedgetter.py @@ -137,7 +137,7 @@ class FeedGetter(object): description = BeautifulSoup(description, "html.parser").decode() article_title = BeautifulSoup(article.title, "html.parser").decode() except Exception as E: - print("Problem when retrieving " + feed_link) + print("Problem when sanitizing the content of the feed: " + feed_link) print(E) article_title = article.title |