Fix crash on rechaptcha exceptions
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Michel Roux 2020-05-16 19:26:15 +02:00
parent d6ac52f08d
commit 7caace6b69
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ from enum import Enum
from functools import wraps
from logging import getLogger
from cloudscraper.exceptions import CloudflareException
from cloudscraper.exceptions import CloudflareException, reCaptchaException
from requests import RequestException
from .cloudscraper import CloudScraperWrapper
@ -91,7 +91,7 @@ def curl_content(url, params=None, ajax=False):
output = response.text
http_code = response.status_code
except (RequestException, CloudflareException) as e:
except (RequestException, CloudflareException, reCaptchaException) as e:
output = ''
http_code = 500
if IS_DEBUG: