From: Brian Wellington Date: Thu, 7 Dec 2023 18:02:00 +0000 (-0800) Subject: NotImplementError -> NotImplementedError X-Git-Tag: v2.5.0rc1~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61d2450e154a80be3b223562876090e2b32e3d55;p=thirdparty%2Fdnspython.git NotImplementError -> NotImplementedError --- diff --git a/dns/asyncbackend.py b/dns/asyncbackend.py index 07d50e1e..0ec58b06 100644 --- a/dns/asyncbackend.py +++ b/dns/asyncbackend.py @@ -32,7 +32,7 @@ def get_backend(name: str) -> Backend: *name*, a ``str``, the name of the backend. Currently the "trio" and "asyncio" backends are available. - Raises NotImplementError if an unknown backend name is specified. + Raises NotImplementedError if an unknown backend name is specified. """ # pylint: disable=import-outside-toplevel,redefined-outer-name backend = _backends.get(name)