aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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