diff --git a/src/Python/flask/web/app.py b/src/Python/flask/web/app.py index 5efbb30..28543ea 100644 --- a/src/Python/flask/web/app.py +++ b/src/Python/flask/web/app.py @@ -85,6 +85,7 @@ def index(): @app.route('/control', methods=["GET", "POST"]) def control(): if request.authorization and request.authorization.username == 'ishak' and request.authorization.password == 'kobuki': + yolo_results_db() return render_template('control.html') else: return ('Unauthorized', 401, {'WWW-Authenticate': 'Basic realm="Login Required"'})