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/166c2a745ad9535ab21ce2ff5f8a36da21451654/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')
|