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/ac1a3c5eb07650eb3942163ca3d8f6485a2027b5/libs/future/moves/_dummy_thread.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/future/moves/_dummy_thread.py

14 lines
348 B

from __future__ import absolute_import
from future.utils import PY3, PY39_PLUS
if PY39_PLUS:
# _dummy_thread and dummy_threading modules were both deprecated in
# Python 3.7 and removed in Python 3.9
from _thread import *
elif PY3:
from _dummy_thread import *
else:
__future_module__ = True
from dummy_thread import *