diff options
author | Dusty Phillips <buchuki@gmail.com> | 2008-10-11 20:09:15 -0400 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2008-10-11 20:09:15 -0400 |
commit | ad9672eeb4564ab86ce3202a70fa35f81499ca7c (patch) | |
tree | ab1257b2b1d4c473ff984eafa7c0c6c7f480e934 | |
parent | 96ef7eaab974116c6b6880428a2b9db4f3e35418 (diff) |
drop some print statements
-rw-r--r-- | todolists/views.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/todolists/views.py b/todolists/views.py index 70e55beb..3c03b308 100644 --- a/todolists/views.py +++ b/todolists/views.py @@ -122,9 +122,7 @@ def send_todolist_email(todo): package has been added to a to-do list''' if todo.pkg.maintainer_id == 0: return - print todo - print todo.list_id - print todo.list.name + page_dict = { 'pkg': todo.pkg, 'todolist': todo.list, |