From 96429bc53f2912fc8065439c7adac83a87ef806b Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 31 Jul 2020 07:36:48 -0700 Subject: [PATCH] the abstract wire parse method for Rdata is now from_wire_parser() --- dns/rdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns/rdata.py b/dns/rdata.py index 0daa08da..ea2f1d24 100644 --- a/dns/rdata.py +++ b/dns/rdata.py @@ -303,7 +303,7 @@ class Rdata: raise NotImplementedError # pragma: no cover @classmethod - def from_wire(cls, rdclass, rdtype, wire, current, rdlen, origin=None): + def from_wire_parser(cls, rdclass, rdtype, parser, origin=None): raise NotImplementedError # pragma: no cover def replace(self, **kwargs): -- 2.47.3