Changeset 8246
- Timestamp:
- 08/08/08 16:24:02 (3 months ago)
- Files:
-
- django/trunk/django/contrib/auth/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/auth/models.py
r8044 r8246 79 79 verbose_name_plural = _('permissions') 80 80 unique_together = (('content_type', 'codename'),) 81 ordering = ('content_type ', 'codename')81 ordering = ('content_type__app_label', 'codename') 82 82 83 83 def __unicode__(self):
