Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/blame/commit/c4b8345e659e38992456e31a4c21bbf0a7d38545/libs/python_anticaptcha/__init__.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/python_anticaptcha/__init__.py

30 lines
747 B

from .base import AnticaptchaClient
from pkg_resources import get_distribution, DistributionNotFound
from .tasks import (
NoCaptchaTaskProxylessTask,
RecaptchaV2TaskProxyless,
NoCaptchaTask,
RecaptchaV2Task,
FunCaptchaProxylessTask,
FunCaptchaTask,
ImageToTextTask,
RecaptchaV3TaskProxyless,
HCaptchaTaskProxyless,
HCaptchaTask,
RecaptchaV2EnterpriseTaskProxyless,
RecaptchaV2EnterpriseTask,
GeeTestTaskProxyless,
GeeTestTask,
AntiGateTaskProxyless,
AntiGateTask
)
from .exceptions import AnticaptchaException
AnticatpchaException = AnticaptchaException
try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
pass