Index: contrib/auth/models.py =================================================================== --- contrib/auth/models.py (revision 4766) +++ contrib/auth/models.py (working copy) @@ -45,7 +45,7 @@ ordering = ('content_type', 'codename') def __str__(self): - return "%s | %s" % (self.content_type, self.name) + return "%s | %s | %s" % (self.content_type.app_label, self.content_type, self.name) class Group(models.Model): """Groups are a generic way of categorizing users to apply permissions, or some other label, to those users. A user can belong to any number of groups.