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/4982df76b22bd68d332053f861359499f0375b2f/libs/xdg/util.py
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
import sys
|
|
|
|
PY3 = sys.version_info[0] >= 3
|
|
|
|
if PY3:
|
|
def u(s):
|
|
return s
|
|
else:
|
|
# Unicode-like literals
|
|
def u(s):
|
|
return s.decode('utf-8')
|