diff options
author | Evangelos Foutras <foutrelis@gmail.com> | 2010-01-31 07:53:27 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-01-31 13:44:03 -0600 |
commit | 09a3a08144fd14fcd905cdf3e86dcc240458040c (patch) | |
tree | 72a03516cf3fa888d57cdca5b1fb18717532849f /todolists | |
parent | 2c3c6cc2e1dc070395481f92f5499113b9e5a6bf (diff) |
Adjust models and views for nullable maintainer
Signed-off-by: Evangelos Foutras <foutrelis@gmail.com>
[Dan: made a few other small touchups]
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'todolists')
-rw-r--r-- | todolists/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/todolists/views.py b/todolists/views.py index c06397e7..00236c62 100644 --- a/todolists/views.py +++ b/todolists/views.py @@ -124,7 +124,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''' - if todo.pkg.maintainer_id == 0: + if not todo.pkg.maintainer: return page_dict = { |