summaryrefslogtreecommitdiff
path: root/django/contrib/contenttypes/fields.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/contenttypes/fields.py')
-rw-r--r--django/contrib/contenttypes/fields.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/django/contrib/contenttypes/fields.py b/django/contrib/contenttypes/fields.py
index c2b46d1254..df6113f462 100644
--- a/django/contrib/contenttypes/fields.py
+++ b/django/contrib/contenttypes/fields.py
@@ -97,7 +97,8 @@ class GenericForeignKey:
except FieldDoesNotExist:
return [
checks.Error(
- "The GenericForeignKey object ID references the non-existent field '%s'." % self.fk_field,
+ "The GenericForeignKey object ID references the "
+ "nonexistent field '%s'." % self.fk_field,
obj=self,
id='contenttypes.E001',
)
@@ -115,7 +116,8 @@ class GenericForeignKey:
except FieldDoesNotExist:
return [
checks.Error(
- "The GenericForeignKey content type references the non-existent field '%s.%s'." % (
+ "The GenericForeignKey content type references the "
+ "nonexistent field '%s.%s'." % (
self.model._meta.object_name, self.ct_field
),
obj=self,