From e399cf330bc9651b7985bcdd7ee31851146731fc Mon Sep 17 00:00:00 2001 From: Sergio Oliveira Date: Mon, 16 Dec 2013 17:43:47 -0200 Subject: [PATCH] Using True instead of 1 --- src/accounts/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accounts/views.py b/src/accounts/views.py index 5e9a113..29c4fa9 100644 --- a/src/accounts/views.py +++ b/src/accounts/views.py @@ -174,7 +174,7 @@ class ManageUserSubscriptionsView(UserProfileBaseMixin, DetailView): user = self.get_object() emails = user.emails.values_list('address', flat=True) - all_lists = mailman.all_lists(description=1) + all_lists = mailman.all_lists(description=True) for email in emails: lists = [] -- libgit2 0.21.2