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/9e75acd5493791879a3037a77c89ccddcb3844f4/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