From: Bob Halley Date: Wed, 20 May 2020 14:16:10 +0000 (-0700) Subject: raise NotImplememtedError, not NotImplemented X-Git-Tag: v2.0.0rc1~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=afdfbcce7362213d1bb0231ea462a459bef37e8d;p=thirdparty%2Fdnspython.git raise NotImplememtedError, not NotImplemented --- diff --git a/dns/enum.py b/dns/enum.py index 62b4a446..5bc46fed 100644 --- a/dns/enum.py +++ b/dns/enum.py @@ -62,7 +62,7 @@ class IntEnum(enum.IntEnum): @classmethod def _maximum(cls): - raise NotImplemented + raise NotImplementedError @classmethod def _short_name(cls):