Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/blame/commit/2fcf3dee087bff8e6005da5438e47e552bbc3864/libs/certifi/core.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/certifi/core.py

16 lines
218 B

# -*- coding: utf-8 -*-
"""
certifi.py
~~~~~~~~~~
This module returns the installation location of cacert.pem.
"""
import os
def where():
f = os.path.dirname(__file__)
return os.path.join(f, 'cacert.pem')