From 6e9477ca630ebee48b3836cdc39bf5cd743e8084 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 1 Mar 2010 21:43:12 -0600 Subject: Unify spelling of 'Todo' We used 'Todo', 'ToDo', and 'To-do' in different places. Unify them all to the first. Signed-off-by: Dan McGee --- todolists/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'todolists') diff --git a/todolists/views.py b/todolists/views.py index 8358e4c..f176e39 100644 --- a/todolists/views.py +++ b/todolists/views.py @@ -78,7 +78,7 @@ def add(request): form = TodoListForm() page_dict = { - 'title': 'Add To-do List', + 'title': 'Add Todo List', 'form': form, 'submit_text': 'Create List' } @@ -117,7 +117,7 @@ def edit(request, list_id): 'packages': todo_list.package_names, }) page_dict = { - 'title': 'Edit To-do List "%s"' % todo_list.name, + 'title': 'Edit Todo List: %s' % todo_list.name, 'form': form, 'submit_text': 'Save List' } @@ -131,7 +131,7 @@ def delete_todolist(request, object_id): def send_todolist_email(todo): '''Sends an e-mail to the maintainer of a package notifying them that the - package has been added to a to-do list''' + package has been added to a todo list''' if not todo.pkg.maintainer: return -- cgit v1.2.3-24-g4f1b