diff --git a/scripts/validate/links.py b/scripts/validate/links.py index 287e5dca..7ae00f13 100644 --- a/scripts/validate/links.py +++ b/scripts/validate/links.py @@ -179,9 +179,7 @@ def check_if_link_is_working(link: str) -> Tuple[bool, str]: has_error = True error_message = f'ERR:CLT: {code} : {link}' - except requests.exceptions.SSLError as error: - has_error = True - error_message = f'ERR:SSL: {error} : {link}' + except requests.exceptions.ConnectionError as error: has_error = True