From fe5501132e3be97c256de786b29ed3890cb9793b Mon Sep 17 00:00:00 2001 From: Sid Sarasvati Date: Tue, 19 Sep 2023 10:18:48 -0400 Subject: [PATCH] Update utils.py print error when hitting exception to aid debugging infinite looping --- utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 64cc2cf..219feb4 100644 --- a/utils.py +++ b/utils.py @@ -65,7 +65,8 @@ def search_images_ddg(key,max_n=200): if max_n < 1: return L(set(urls)) # dedupe if 'next' not in data: return L(set(urls)) requestUrl = url + data['next'] - except: + except Exception as e: + print('Error: %s. Contiuing...' % e) pass