Ignore requests.exceptions.TooManyRedirects for catalog page
This commit is contained in:
parent
98d84054d6
commit
117459bb8f
|
@ -206,7 +206,8 @@ def get_catalog_from_artwork(entity):
|
||||||
check_catalog(entity, catalog)
|
check_catalog(entity, catalog)
|
||||||
except (requests.exceptions.ReadTimeout,
|
except (requests.exceptions.ReadTimeout,
|
||||||
requests.exceptions.ConnectTimeout,
|
requests.exceptions.ConnectTimeout,
|
||||||
requests.exceptions.ConnectionError):
|
requests.exceptions.ConnectionError,
|
||||||
|
requests.exceptions.TooManyRedirects):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
return catalog
|
return catalog
|
||||||
|
|
Loading…
Reference in a new issue