Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/blame/commit/810d8095f9ccda8dd7e483bd02e614f1161a87ac/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

6 years ago
__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())