From 513ef59d4aa1bb2d8af75654a091de20ae5ed46c Mon Sep 17 00:00:00 2001 From: Scot Hacker Date: Thu, 10 Jan 2019 00:54:14 -0800 Subject: [PATCH] Add comment --- todo/views/add_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo/views/add_list.py b/todo/views/add_list.py index 8cf9f03..8304852 100644 --- a/todo/views/add_list.py +++ b/todo/views/add_list.py @@ -16,7 +16,7 @@ def add_list(request) -> HttpResponse: """Allow users to add a new todo list to the group they're in. """ - # Only staffers can add lists. + # Only staffers can add lists, regardless of TODO_STAFF_USER setting. if not request.user.is_staff: raise PermissionDenied