diff options
Diffstat (limited to 'host')
-rwxr-xr-x | host/server.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/server.py b/host/server.py index 7efca5e..2b42855 100755 --- a/host/server.py +++ b/host/server.py @@ -10,6 +10,7 @@ import itertools import threading import random import os +import sys from ctypes import * @@ -64,6 +65,7 @@ def printframe(fb): def log(*args): printlock.acquire() print(strftime('\x1B[93m[%m-%d %H:%M:%S]\x1B[0m'), ' '.join(str(arg) for arg in args), '\x1B[0m') + sys.stdout.flush() printlock.release() class TextRenderer: |