aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-04-03 07:19:41 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-04-03 07:19:41 +0200
commit1327a6dcb987e0d706d2be1dcbf15ce4d1c12774 (patch)
treeb79567dfd6a0fccb7c09706cd58638d8cc98a888 /source
parentUpdated revision date. (diff)
downloadnewspipe-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-xsource/feedgetter.py2
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
bgstack15