Commit e399cf330bc9651b7985bcdd7ee31851146731fc

Authored by Sergio Oliveira
1 parent f5a5f685

Using True instead of 1

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/accounts/views.py
@@ -174,7 +174,7 @@ class ManageUserSubscriptionsView(UserProfileBaseMixin, DetailView): @@ -174,7 +174,7 @@ class ManageUserSubscriptionsView(UserProfileBaseMixin, DetailView):
174 174
175 user = self.get_object() 175 user = self.get_object()
176 emails = user.emails.values_list('address', flat=True) 176 emails = user.emails.values_list('address', flat=True)
177 - all_lists = mailman.all_lists(description=1) 177 + all_lists = mailman.all_lists(description=True)
178 178
179 for email in emails: 179 for email in emails:
180 lists = [] 180 lists = []