From a2fceea1e36a10e45a99f27f8595a6f7f0ca04cf Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 1 Jun 2006 03:33:34 +0000 Subject: [PATCH] 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 --- django/contrib/auth/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/auth/models.py b/django/contrib/auth/models.py index cea7a694c9..44d7d9ffe8 100644 --- a/django/contrib/auth/models.py +++ b/django/contrib/auth/models.py @@ -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)