aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-24 21:20:13 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-24 21:20:13 +0100
commit8d8271c17e7e2dbbc9c037db03a335182fd3c585 (patch)
tree7417d21152c646d35ac767049dfe1768d755a136
parentfixes for the crawler. (diff)
downloadnewspipe-8d8271c17e7e2dbbc9c037db03a335182fd3c585.tar.gz
newspipe-8d8271c17e7e2dbbc9c037db03a335182fd3c585.tar.bz2
newspipe-8d8271c17e7e2dbbc9c037db03a335182fd3c585.zip
remnoved debug print
-rw-r--r--newspipe/lib/article_utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/newspipe/lib/article_utils.py b/newspipe/lib/article_utils.py
index ec074fa9..00023fd7 100644
--- a/newspipe/lib/article_utils.py
+++ b/newspipe/lib/article_utils.py
@@ -90,7 +90,6 @@ async def get_article_details(entry, fetch=True):
):
try:
# resolves URL behind proxies (like feedproxy.google.com)
- print('trying to resolve URL...')
response = await newspipe_get(article_link, timeout=5)
except MissingSchema:
split, failed = urlsplit(article_link), False
bgstack15