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/1427a8ab733685f0813e5c07b38dca6bf92453dd/libs/future/moves/tkinter/simpledialog.py
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
from __future__ import absolute_import
|
|
|
|
from future.utils import PY3
|
|
|
|
if PY3:
|
|
from tkinter.simpledialog import *
|
|
else:
|
|
try:
|
|
from SimpleDialog import *
|
|
except ImportError:
|
|
raise ImportError('The SimpleDialog module is missing. Does your Py2 '
|
|
'installation include tkinter?')
|