From 305dfc0f93270b632fc775ad082da3c8b89f39a1 Mon Sep 17 00:00:00 2001 From: Scot Hacker Date: Sun, 3 Aug 2014 09:27:28 -0700 Subject: [PATCH] Indentation fix --- todo/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todo/views.py b/todo/views.py index edea8be..577ea01 100644 --- a/todo/views.py +++ b/todo/views.py @@ -365,7 +365,7 @@ def add_list(request): "Most likely a list with the same name in the same group already exists.") else: if request.user.groups.all().count() == 1: - form = AddListForm(request.user, initial = {"group": request.user.groups.all()[0]}) + form = AddListForm(request.user, initial = {"group": request.user.groups.all()[0]}) else: form = AddListForm(request.user)