aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2013-12-27 10:18:01 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2013-12-27 10:18:01 +0100
commit1ec953df51de0e8617e74d51f09c966dd3cb0bf5 (patch)
tree998e2d68c1090eea8204fe54c8e8ab3383629a3a /pyaggr3g470r
parentBetter management of exceptions. (diff)
downloadnewspipe-1ec953df51de0e8617e74d51f09c966dd3cb0bf5.tar.gz
newspipe-1ec953df51de0e8617e74d51f09c966dd3cb0bf5.tar.bz2
newspipe-1ec953df51de0e8617e74d51f09c966dd3cb0bf5.zip
Don't log that.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/feedgetter.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyaggr3g470r/feedgetter.py b/pyaggr3g470r/feedgetter.py
index 13973d7b..d1edfce9 100644
--- a/pyaggr3g470r/feedgetter.py
+++ b/pyaggr3g470r/feedgetter.py
@@ -118,8 +118,7 @@ class FeedGetter(object):
description = BeautifulSoup(description, "html.parser").decode()
article_title = BeautifulSoup(article.title, "html.parser").decode()
except Exception as E:
- pyaggr3g470r_log.error("Problem when sanitizing the content of the article %s (%s)" \
- % (article_title, real_url))
+ #pyaggr3g470r_log.error("Problem when sanitizing the content of the article %s (%s)" % (article_title, real_url))
article_title = article.title
try:
bgstack15