﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
2418	PermLookupDict using old method to get full permissions list, failing	DarkElf109@…	Adrian Holovaty	"In {{{django.core.contextProcessors}}}, on line 55, {{{PermLookupDict}}}'s {{{__repr__}}} function attempts to return the given {{{User}}} object's permission list through the use of {{{get_permission_list()}}}. Since this is no longer implemented in {{{User}}}, it fails consistently. Instead, {{{get_all_permissions()}}} should be used.
{{{
Excerpt:
54:    def __repr__(self):
55:        return str(self.user.get_permission_list())

Proposed:
54:    def __repr__(self):
55:        return str(self.user.get_all_permissions())
}}}"	defect	closed	Core (Other)	dev	major	fixed			Unreviewed	0	0	0	0	0	0
