summaryrefslogtreecommitdiff
path: root/dns/enum.py
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-05-20 07:16:10 -0700
committerBob Halley <halley@dnspython.org>2020-05-20 07:16:10 -0700
commitafdfbcce7362213d1bb0231ea462a459bef37e8d (patch)
treebb2c3cf1b43cc33a27b376cb773c1d9822b0c94b /dns/enum.py
parent020634c62c0417e257ec622665f910b7a2d46d27 (diff)
downloaddnspython-afdfbcce7362213d1bb0231ea462a459bef37e8d.tar.gz
raise NotImplememtedError, not NotImplemented
Diffstat (limited to 'dns/enum.py')
-rw-r--r--dns/enum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/enum.py b/dns/enum.py
index 62b4a44..5bc46fe 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):