diff options
author | Hasan Ramezani <hasan.r67@gmail.com> | 2018-05-14 02:27:28 +0430 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2018-05-13 17:57:28 -0400 |
commit | 31ce1f74334add625a4ed82b531d769828237882 (patch) | |
tree | 1446815e3054b2a0071738ece3628abd4cc8d9e5 /django/contrib/postgres/fields/array.py | |
parent | 2405833c53950394a296fbf96211fcd04faccefe (diff) | |
download | django-31ce1f74334add625a4ed82b531d769828237882.tar.gz |
Refs #29131 -- Fixed space handling in ArrayField's item_invalid message.
Diffstat (limited to 'django/contrib/postgres/fields/array.py')
-rw-r--r-- | django/contrib/postgres/fields/array.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/postgres/fields/array.py b/django/contrib/postgres/fields/array.py index d2c1743861..ab667acd5b 100644 --- a/django/contrib/postgres/fields/array.py +++ b/django/contrib/postgres/fields/array.py @@ -19,7 +19,7 @@ __all__ = ['ArrayField'] class ArrayField(CheckFieldDefaultMixin, Field): empty_strings_allowed = False default_error_messages = { - 'item_invalid': _('Item %(nth)s in the array did not validate: '), + 'item_invalid': _('Item %(nth)s in the array did not validate:'), 'nested_array_mismatch': _('Nested arrays must have the same length.'), } _default_hint = ('list', '[]') |