Removed extra comma

master
Adam M. Peacock 2016-02-23 12:29:59 -05:00
parent 3ef33043d7
commit bbb88d57ab
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class SortableAdminBase(object):
extra_context.update({
'change_list_template_extends': self.change_list_template_extends,
'sorting_filters': [sort_filter[0] for sort_filter
in getattr(self.model, 'sorting_filters', [])],
in getattr(self.model, 'sorting_filters', [])]
})
return super(SortableAdminBase, self).changelist_view(request,
extra_context=extra_context)