diff --git a/face_recognition/app/app.py b/face_recognition/app/app.py index 985f67e..f75da0a 100644 --- a/face_recognition/app/app.py +++ b/face_recognition/app/app.py @@ -39,7 +39,7 @@ def new_user_id(): def new_face(): id = request.args.get('id', None) img = request.args.get('encoded_string', None) - print(img) + print(img, flush=True) imgdata = base64.b64decode(img) with open('/tmp/'+str(id), 'wb') as file: file.write(imgdata)