Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/e4b6020f63d8a7f6077df2bd64e64c2793bf3d19 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added stdout flush even for Python 2.x.

pull/712/head
Louis Vézina 5 years ago
parent 55bf67950f
commit e4b6020f63

@ -51,9 +51,9 @@ def start_bazarr():
break
if PY3:
sys.stdout.buffer.write(line)
sys.stdout.flush()
else:
sys.stdout.write(line)
sys.stdout.flush()
except KeyboardInterrupt:
pass

Loading…
Cancel
Save