From 789a3541b5e6dc1ada9c5b39b826e2573c0c7952 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Thu, 2 Jun 2016 13:45:38 -0700 Subject: [PATCH] Define filters variable again There's a conditional that still used it, however we still need to actually implement the todo functionality with newer django. --- samples/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/views.py b/samples/views.py index 2080d5b..3f6ca60 100644 --- a/samples/views.py +++ b/samples/views.py @@ -36,7 +36,7 @@ LOGGER = logging.getLogger(__name__) def library(request, todo_only=False): - #filters = {'hidden__exact': 0} + filters = {'hidden__exact': 0} if todo_only: filters['lane'] = None -- 2.30.2