diff --git a/kibot/out_download_datasheets.py b/kibot/out_download_datasheets.py index afd74c98..7f6fc1c6 100644 --- a/kibot/out_download_datasheets.py +++ b/kibot/out_download_datasheets.py @@ -68,6 +68,9 @@ class Download_Datasheets_Options(VariantOptions): except requests.exceptions.ReadTimeout: logger.warning(W_FAILDL+'Timeout during download `{}`'.format(ds)) return None + except requests.exceptions.SSLError: + logger.warning(W_FAILDL+'SSL Error during download `{}`'.format(ds)) + return None if r.status_code != 200: logger.warning(W_FAILDL+'Failed to download `{}`'.format(ds)) return None