Skip to content

Commit f4d1553

Browse files
authored
Merge pull request #692 from abawchen/fix-deprecations-url
Fix deprecations url
2 parents 2594cdb + a96ed55 commit f4d1553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene/types/abstracttype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ class AbstractType(SubclassWithMeta):
77
def __init_subclass__(cls, *args, **kwargs):
88
warn_deprecation(
99
"Abstract type is deprecated, please use normal object inheritance instead.\n"
10-
"See more: https://github.com/graphql-python/graphene/blob/v2.0.0/UPGRADE-v2.0.md#deprecations"
10+
"See more: https://github.com/graphql-python/graphene/blob/master/UPGRADE-v2.0.md#deprecations"
1111
)
1212
super(AbstractType, cls).__init_subclass__(*args, **kwargs)

0 commit comments

Comments
 (0)