From 7a14b77a415df75829b7c8a8f324478ee6a0d06a Mon Sep 17 00:00:00 2001
From: Gabor Markowski <gabor94@gmail.com>
Date: Sun, 23 Feb 2020 09:47:41 +0000
Subject: [PATCH] fix a typo in the warning (#884)

---
 graphene_django/types.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/graphene_django/types.py b/graphene_django/types.py
index 922790c..0c0cb1c 100644
--- a/graphene_django/types.py
+++ b/graphene_django/types.py
@@ -102,7 +102,7 @@ def validate_fields(type_, model, fields, only_fields, exclude_fields):
             # Field is a custom field
             warnings.warn(
                 (
-                    'Excluding the custom field "{field_name} on DjangoObjectType "{type_}" has no effect. '
+                    'Excluding the custom field "{field_name}" on DjangoObjectType "{type_}" has no effect. '
                     'Either remove the custom field or remove the field from the "exclude" list.'
                 ).format(
                     field_name=name,