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/d2bbc479bcf7044d5f6a1c435adac161a29112fb/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)