diff options
| author | Bob Halley <halley@dnspython.org> | 2020-05-20 07:16:10 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2020-05-20 07:16:10 -0700 |
| commit | afdfbcce7362213d1bb0231ea462a459bef37e8d (patch) | |
| tree | bb2c3cf1b43cc33a27b376cb773c1d9822b0c94b /dns/enum.py | |
| parent | 020634c62c0417e257ec622665f910b7a2d46d27 (diff) | |
| download | dnspython-afdfbcce7362213d1bb0231ea462a459bef37e8d.tar.gz | |
raise NotImplememtedError, not NotImplemented
Diffstat (limited to 'dns/enum.py')
| -rw-r--r-- | dns/enum.py | 2 |
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): |
