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/1a612d12b802313220f95a65e66cfe8f702bcd6f/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())