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

23 lines
315 B

import sys
# Syntax sugar.
_ver = sys.version_info
#: Python 2.x?
is_py2 = (_ver[0] == 2)
#: Python 3.x?
is_py3 = (_ver[0] == 3)
from io import open as io_open
if is_py2:
basestring = basestring
str = unicode
open = io_open
elif is_py3:
basestring = (str, bytes)
str = str
open = open