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/a8258006b50e50f1f630854e785f05fd1c66e0ea/libs/itsdangerous/_json.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/itsdangerous/_json.py

19 lines
431 B

try:
import simplejson as json
except ImportError:
import json
class _CompactJSON(object):
"""Wrapper around json module that strips whitespace."""
@staticmethod
def loads(payload):
return json.loads(payload)
@staticmethod
def dumps(obj, **kwargs):
kwargs.setdefault("ensure_ascii", False)
kwargs.setdefault("separators", (",", ":"))
return json.dumps(obj, **kwargs)