From: Bob Halley Date: Sun, 31 Aug 2014 23:31:20 +0000 (-0700) Subject: Pull up fcde73a2b6c323e55eaf74192885b2d4922a719a from dnspython. X-Git-Tag: v1.12.0-py3~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1966831a7357e804071c332e0ea3cfe0b19fd393;p=thirdparty%2Fdnspython.git Pull up fcde73a2b6c323e55eaf74192885b2d4922a719a from dnspython. --- diff --git a/dns/rdtypes/ANY/NSEC3PARAM.py b/dns/rdtypes/ANY/NSEC3PARAM.py index f323d3f5..ede68632 100644 --- a/dns/rdtypes/ANY/NSEC3PARAM.py +++ b/dns/rdtypes/ANY/NSEC3PARAM.py @@ -58,6 +58,7 @@ class NSEC3PARAM(dns.rdata.Rdata): salt = b'' else: salt = bytes.fromhex(salt) + tok.get_eol() return cls(rdclass, rdtype, algorithm, flags, iterations, salt) from_text = classmethod(from_text)