From 1327a6dcb987e0d706d2be1dcbf15ce4d1c12774 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 3 Apr 2013 07:19:41 +0200 Subject: Changed the message whe BeautifulSoup fails to sanitize the description of the article. --- source/feedgetter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/feedgetter.py') 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 -- cgit