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/6ec304d13d5ed8a217f0f6d6ee98ecc98cac87af/libs/future/moves/html/parser.py
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
from __future__ import absolute_import
|
|
from future.utils import PY3
|
|
__future_module__ = True
|
|
|
|
if PY3:
|
|
from html.parser import *
|
|
else:
|
|
from HTMLParser import *
|