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

9 lines
179 B

from __future__ import absolute_import
from future.utils import PY3
if PY3:
from urllib.robotparser import *
else:
__future_module__ = True
from robotparser import *