From 75d1a5e6a46ded6293b730b57b2a89484a96dd6d Mon Sep 17 00:00:00 2001 From: Nishanth Amuluru Date: Fri, 7 Jan 2011 12:21:43 +0530 Subject: fixed a typo and browse notifications works fine --- profile/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'profile/views.py') diff --git a/profile/views.py b/profile/views.py index 9192180..386ca49 100755 --- a/profile/views.py +++ b/profile/views.py @@ -48,7 +48,7 @@ def browse_notifications(request): """ get the list of notifications that are not deleted and display in datetime order.""" - user = get_user(request.user) + user = request.user active_notifications = user.notification_sent_to.filter(is_deleted=False).order_by('sent_date').reverse() -- cgit