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

19 lines
361 B

__all__ = ['retry']
import logging
from .api import retry
# Set default logging handler to avoid "No handler found" warnings.
try: # Python 2.7+
from logging import NullHandler
except ImportError:
class NullHandler(logging.Handler):
def emit(self, record):
pass
log = logging.getLogger(__name__)
log.addHandler(NullHandler())