Update utils.py

print error when hitting exception to aid debugging infinite looping
This commit is contained in:
Sid Sarasvati 2023-09-19 10:18:48 -04:00 committed by GitHub
parent 823b69e00a
commit fe5501132e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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