From a96ed550bd0c67b7a9ec0b9f636f71c530441e5f Mon Sep 17 00:00:00 2001 From: abawchen Date: Tue, 20 Mar 2018 08:14:59 +0800 Subject: [PATCH] Fix deprecations url in DeprecationWarning message. --- graphene/types/abstracttype.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene/types/abstracttype.py b/graphene/types/abstracttype.py index 1693cc8e..aaa0ff37 100644 --- a/graphene/types/abstracttype.py +++ b/graphene/types/abstracttype.py @@ -7,6 +7,6 @@ class AbstractType(SubclassWithMeta): def __init_subclass__(cls, *args, **kwargs): warn_deprecation( "Abstract type is deprecated, please use normal object inheritance instead.\n" - "See more: https://github.com/graphql-python/graphene/blob/v2.0.0/UPGRADE-v2.0.md#deprecations" + "See more: https://github.com/graphql-python/graphene/blob/master/UPGRADE-v2.0.md#deprecations" ) super(AbstractType, cls).__init_subclass__(*args, **kwargs)