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/88c9d67cf174a08dae9ea3e96cd1c3e070fb318a/libs/pytz_deprecation_shim/_common.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/pytz_deprecation_shim/_common.py

14 lines
275 B

import sys
_PYTZ_IMPORTED = False
def pytz_imported():
"""Detects whether or not pytz has been imported without importing pytz."""
global _PYTZ_IMPORTED
if not _PYTZ_IMPORTED and "pytz" in sys.modules:
_PYTZ_IMPORTED = True
return _PYTZ_IMPORTED