aboutsummaryrefslogtreecommitdiff
path: root/app/main/routes.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/main/routes.py')
-rw-r--r--app/main/routes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main/routes.py b/app/main/routes.py
index 75959a0..8d2aa6e 100644
--- a/app/main/routes.py
+++ b/app/main/routes.py
@@ -56,7 +56,7 @@ def assign():
user_tasks = [t for t in user_tasks if not t.done]
# if the user has, for some reason, a unfinished assigned task, redirect to
- # that
+ # that. This can happen if the admin has assigned this task.
if len(user_tasks) > 0:
task = user_tasks[0]
return redirect(url_for("main.annotate", task_id=task.id))