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

12 lines
298 B

"""Module with system exceptions"""
class MemoryManagerError(Exception):
"""Base class for all exceptions thrown by the memory manager"""
class RegionCollectionError(MemoryManagerError):
"""Thrown if a memory region could not be collected, or if no region for collection was found"""