Commit a2fceea1 authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Changed auth.Permission.__str__() to use str() of self.content_type, not repr()

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3035 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent f10af2de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ class Permission(models.Model):
        ordering = ('content_type', 'codename')

    def __str__(self):
        return "%r | %s" % (self.content_type, self.name)
        return "%s | %s" % (self.content_type, self.name)

class Group(models.Model):
    name = models.CharField(_('name'), maxlength=80, unique=True)