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/04a0d5ffb2a409a5e407242daaa11de9b246c346/libs/html5lib/_trie/__init__.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/html5lib/_trie/__init__.py

15 lines
289 B

from __future__ import absolute_import, division, unicode_literals
from .py import Trie as PyTrie
Trie = PyTrie
# pylint:disable=wrong-import-position
try:
from .datrie import Trie as DATrie
except ImportError:
pass
else:
Trie = DATrie
# pylint:enable=wrong-import-position