summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/postgres/utils.py')
-rw-r--r--django/contrib/postgres/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/postgres/utils.py b/django/contrib/postgres/utils.py
index 9f92f4059f..f3c022f474 100644
--- a/django/contrib/postgres/utils.py
+++ b/django/contrib/postgres/utils.py
@@ -17,7 +17,7 @@ def prefix_validation_error(error, prefix, code, params):
# ngettext calls require a count parameter and are converted
# to an empty string if they are missing it.
message=format_lazy(
- '{}{}',
+ '{} {}',
SimpleLazyObject(lambda: prefix % params),
SimpleLazyObject(lambda: error.message % error_params),
),