From 711e78cfbe5758410945ed5d21e8993195105ed4 Mon Sep 17 00:00:00 2001 From: fabrice Date: Mon, 10 Jun 2019 10:33:33 +0000 Subject: [PATCH] Update 'face_recognition/app/app.py' --- face_recognition/app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/face_recognition/app/app.py b/face_recognition/app/app.py index 8b23265..133b928 100644 --- a/face_recognition/app/app.py +++ b/face_recognition/app/app.py @@ -19,7 +19,7 @@ def access_minio(): @app.route('/new_user_id') def new_user_id(): id = None - for try in range(0,5): + for limited_try in range(0,5): id = str(uuid.uuid4()) if check_id(id) == False: break