Fixed #16438 -- Corrected whitespace in admin models module. Thanks, philipkimmey.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16601 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2011-08-12 14:14:39 +00:00
parent cb1d660962
commit e912edec20
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,9 @@ class LogEntry(models.Model):
object_repr = models.CharField(_('object repr'), max_length=200)
action_flag = models.PositiveSmallIntegerField(_('action flag'))
change_message = models.TextField(_('change message'), blank=True)
objects = LogEntryManager()
class Meta:
verbose_name = _('log entry')
verbose_name_plural = _('log entries')
@ -34,7 +36,6 @@ class LogEntry(models.Model):
return smart_unicode(self.action_time)
def __unicode__(self):
if self.action_flag == ADDITION:
return _('Added "%(object)s".') % {'object': self.object_repr}
elif self.action_flag == CHANGE: