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/58262bc299d7e0f8742379d7018e06bf86a5b9b7/libs/future/moves/queue.py
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
from __future__ import absolute_import
|
|
from future.utils import PY3
|
|
|
|
if PY3:
|
|
from queue import *
|
|
else:
|
|
__future_module__ = True
|
|
from Queue import *
|