diff options
author | Marjo Murtomäki <mmurtoma@local> | 2023-11-27 20:06:59 +0200 |
---|---|---|
committer | Marjo Murtomäki <mmurtoma@local> | 2023-11-27 20:06:59 +0200 |
commit | d6c73dbde8a35905a8f29caf9b6d088043a5e78f (patch) | |
tree | 3c01dbdc1da03d25bb999c10496c93a9f1ef4fbe /routes/analyse.py | |
parent | c618290a4476fd01f46b079e8b95bbc16341cbca (diff) |
Fixing so that the code will run again after adding csrf checks.
Diffstat (limited to 'routes/analyse.py')
-rw-r--r-- | routes/analyse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/analyse.py b/routes/analyse.py index e256201..70d852b 100644 --- a/routes/analyse.py +++ b/routes/analyse.py @@ -2,7 +2,7 @@ from itertools import combinations from app import app from flask import render_template,session,request,redirect import db_actions as D -from routes.tools import rows2dicts, get_alert, get_nick, red +from routes.tools import rows2dicts, get_alert, get_nick, csrf_check def find_best_and_worst(aid, uid): answers=D.get_all_answers_for_quiz(aid) |