aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-11 23:12:36 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-11 23:12:36 +0100
commit67e8629347a1759277146e465172d3ba7a619f8e (patch)
tree92f94bcb1b7b7c81617fb48c311f0ef4771b110e /pyaggr3g470r
parentOh my god. (diff)
downloadnewspipe-67e8629347a1759277146e465172d3ba7a619f8e.tar.gz
newspipe-67e8629347a1759277146e465172d3ba7a619f8e.tar.bz2
newspipe-67e8629347a1759277146e465172d3ba7a619f8e.zip
In the case it is not possible to resolve the URL of an article we just ignore the problem and continue.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/crawler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/crawler.py b/pyaggr3g470r/crawler.py
index 26fc0823..74e0a71c 100644
--- a/pyaggr3g470r/crawler.py
+++ b/pyaggr3g470r/crawler.py
@@ -109,7 +109,7 @@ def parse_feed(user, feed):
logger.warning(
"Unable to get the real URL of %s. Error: %s",
article.link, error)
- continue
+ pass
# remove utm_* parameters
nice_url = utils.clean_url(nice_url)
bgstack15