From 67b79edc151002064b94b858862f9044fcde0f70 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 12 Jun 2020 13:47:28 -0700 Subject: [PATCH] fix comment --- dns/asyncbackend.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dns/asyncbackend.py b/dns/asyncbackend.py index acef9a67..1c9a1024 100644 --- a/dns/asyncbackend.py +++ b/dns/asyncbackend.py @@ -44,8 +44,8 @@ def sniff(): """Attempt to determine the in-use asynchronous I/O library by using the ``sniffio`` module if it is available. - Returns the name of the library, defaulting to "asyncio" if no other - library appears to be in use. + Returns the name of the library, or raises AsyncLibraryNotFoundError + if the library cannot be determined. """ try: import sniffio -- 2.47.3