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/2c8a602aa7e4b65d9365aa138dd702538571996c/libs/msgpack/_cmsgpack.pyx You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/msgpack/_cmsgpack.pyx

12 lines
335 B

# coding: utf-8
#cython: embedsignature=True, c_string_encoding=ascii, language_level=3
from cpython.datetime cimport import_datetime, datetime_new
import_datetime()
import datetime
cdef object utc = datetime.timezone.utc
cdef object epoch = datetime_new(1970, 1, 1, 0, 0, 0, 0, tz=utc)
include "_packer.pyx"
include "_unpacker.pyx"