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/2aae6fe84356ef38efb77cdc334c6c335c57b7c5/libs/pysrt/srtexc.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/pysrt/srtexc.py

32 lines
442 B

"""
Exception classes
"""
class Error(Exception):
"""
Pysrt's base exception
"""
pass
class InvalidTimeString(Error):
"""
Raised when parser fail on bad formated time strings
"""
pass
class InvalidItem(Error):
"""
Raised when parser fail to parse a sub title item
"""
pass
class InvalidIndex(InvalidItem):
"""
Raised when parser fail to parse a sub title index
"""
pass