Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/2346f3ed580ac8c05d3971315f239694201364ed
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -10,8 +10,7 @@ import os
from six . moves . http_client import ResponseNotReady
from guessit import guessit
from subliminal import ProviderError
from subliminal . exceptions import ServiceUnavailable , DownloadLimitExceeded
from subliminal . exceptions import ServiceUnavailable , DownloadLimitExceeded , ConfigurationError , AuthenticationError
from subliminal . providers . opensubtitles import Unauthorized
from subliminal . subtitle import fix_line_ending
from subliminal_patch . exceptions import TooManyRequests
@ -45,7 +44,8 @@ class ProviderRetryMixin(object):
while i < = amount :
try :
return f ( )
except ( Unauthorized , ServiceUnavailable , TooManyRequests , DownloadLimitExceeded , ResponseNotReady ) :
except ( Unauthorized , ServiceUnavailable , TooManyRequests , DownloadLimitExceeded , ResponseNotReady ,
ConfigurationError , AuthenticationError ) :
raise
except exc :
formatted_exc = traceback . format_exc ( )