aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/crawler.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 08:40:24 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-03 08:40:24 +0200
commitc9af51635e5cb214de14fff61e8a7dfb833e0048 (patch)
treeac0637cbb8be04d366e0680bb6d4ba30d2b43ea1 /pyaggr3g470r/crawler.py
parentkeep the original title. (diff)
downloadnewspipe-c9af51635e5cb214de14fff61e8a7dfb833e0048.tar.gz
newspipe-c9af51635e5cb214de14fff61e8a7dfb833e0048.tar.bz2
newspipe-c9af51635e5cb214de14fff61e8a7dfb833e0048.zip
Removed unused variable.
Diffstat (limited to 'pyaggr3g470r/crawler.py')
-rw-r--r--pyaggr3g470r/crawler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/crawler.py b/pyaggr3g470r/crawler.py
index 96b9a540..aa6fdbc0 100644
--- a/pyaggr3g470r/crawler.py
+++ b/pyaggr3g470r/crawler.py
@@ -176,7 +176,7 @@ class FeedGetter(object):
description = ""
try:
description = BeautifulSoup(description, "lxml").decode()
- except Exception as e:
+ except:
pyaggr3g470r_log.error("Problem when sanitizing the content of the article %s (%s)" %
(article_title, nice_url))
article_title = article.title
bgstack15