From fdd3f77fccd3bd652f1a78397f944eca4fbbe964 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Mon, 11 Oct 2021 15:27:10 -0700 Subject: [PATCH] fix accidental reversion of message.py typo fix --- dns/message.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dns/message.py b/dns/message.py index 2a7565a0..6fa90ca5 100644 --- a/dns/message.py +++ b/dns/message.py @@ -236,7 +236,8 @@ class Message: return not self.__eq__(other) def is_response(self, other): - """Is *other* a response this message? + """Is *other*, also a ``dns.message.Message``, a response to this + message? Returns a ``bool``. """ -- 2.47.3