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

13 lines
327 B

from __future__ import absolute_import
from future.utils import PY3
if PY3:
from tkinter.messagebox import *
else:
try:
from tkMessageBox import *
except ImportError:
raise ImportError('The tkMessageBox module is missing. Does your Py2 '
'installation include tkinter?')