Fix for stdout/stderr logging under Python 3.x.

This commit is contained in:
Louis Vézina 2019-12-08 20:43:09 -05:00
parent 67deea3099
commit 0df9b70558

View file

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