aboutsummaryrefslogtreecommitdiff
path: root/source/feedgetter.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/feedgetter.py')
-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