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

28 lines
547 B

# -*- coding: utf-8 -*-
__all__ = ['Error', 'MalformedMKVError', 'ParserError', 'ReadError', 'SizeError']
class Error(Exception):
"""Base class for enzyme exceptions"""
pass
class MalformedMKVError(Error):
"""Wrong or malformed element found"""
pass
class ParserError(Error):
"""Base class for exceptions in parsers"""
pass
class ReadError(ParserError):
"""Unable to correctly read"""
pass
class SizeError(ParserError):
"""Mismatch between the type of the element and the size of its data"""
pass