summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2021-10-11 15:27:10 -0700
committerBob Halley <halley@dnspython.org>2021-10-11 15:27:10 -0700
commitfdd3f77fccd3bd652f1a78397f944eca4fbbe964 (patch)
tree65aa7671eaea3844743c2c5ec295e94eb793121d
parent51a96a2e2c80aaf81229ce01e3f74a15d67f7ef9 (diff)
downloaddnspython-fdd3f77fccd3bd652f1a78397f944eca4fbbe964.tar.gz
fix accidental reversion of message.py typo fix
-rw-r--r--dns/message.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/dns/message.py b/dns/message.py
index 2a7565a..6fa90ca 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``.
"""