diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-11 23:12:36 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-11 23:12:36 +0100 |
commit | 67e8629347a1759277146e465172d3ba7a619f8e (patch) | |
tree | 92f94bcb1b7b7c81617fb48c311f0ef4771b110e | |
parent | Oh my god. (diff) | |
download | newspipe-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.
-rw-r--r-- | pyaggr3g470r/crawler.py | 2 |
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) |