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/a8258006b50e50f1f630854e785f05fd1c66e0ea/libs/guessit/rules/match_processors.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/guessit/rules/match_processors.py

21 lines
393 B

"""
Match processors
"""
from guessit.rules.common import seps
def strip(match, chars=seps):
"""
Strip given characters from match.
:param chars:
:param match:
:return:
"""
while match.input_string[match.start] in chars:
match.start += 1
while match.input_string[match.end - 1] in chars:
match.end -= 1
if not match:
return False