diff options
Diffstat (limited to 'django/contrib/admin/models.py')
| -rw-r--r-- | django/contrib/admin/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/contrib/admin/models.py b/django/contrib/admin/models.py index 917fc77dba..7ff04102a7 100644 --- a/django/contrib/admin/models.py +++ b/django/contrib/admin/models.py @@ -64,7 +64,8 @@ class LogEntry(models.Model): null=True, ) object_id = models.TextField(_("object id"), blank=True, null=True) - # Translators: 'repr' means representation (https://docs.python.org/library/functions.html#repr) + # Translators: 'repr' means representation + # (https://docs.python.org/library/functions.html#repr) object_repr = models.CharField(_("object repr"), max_length=200) action_flag = models.PositiveSmallIntegerField( _("action flag"), choices=ACTION_FLAG_CHOICES |
