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.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/django/contrib/postgres/utils.py b/django/contrib/postgres/utils.py
index f3c022f474..e4f4d81514 100644
--- a/django/contrib/postgres/utils.py
+++ b/django/contrib/postgres/utils.py
@@ -17,13 +17,13 @@ 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),
),
code=code,
params={**error_params, **params},
)
- return ValidationError([
- prefix_validation_error(e, prefix, code, params) for e in error.error_list
- ])
+ return ValidationError(
+ [prefix_validation_error(e, prefix, code, params) for e in error.error_list]
+ )