]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
NotImplementError -> NotImplementedError
authorBrian Wellington <bwelling@xbill.org>
Thu, 7 Dec 2023 18:02:00 +0000 (10:02 -0800)
committerBrian Wellington <bwelling@xbill.org>
Thu, 7 Dec 2023 18:02:00 +0000 (10:02 -0800)
dns/asyncbackend.py

index 07d50e1ee92ad6d987e20f8cb3cd405e02385c02..0ec58b062a149500ce89783cfc812a5b46e5f263 100644 (file)
@@ -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)