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

9 lines
174 B

from __future__ import absolute_import
from future.utils import PY3
if PY3:
from socketserver import *
else:
__future_module__ = True
from SocketServer import *