summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2014-08-31 16:31:20 -0700
committerBob Halley <halley@dnspython.org>2014-08-31 16:31:20 -0700
commit1966831a7357e804071c332e0ea3cfe0b19fd393 (patch)
tree829bd8be3fa11ebe079d0d6a4071c58c0d50ee99
parent31a95491c76bca5eb355de06d918ae5f39588ade (diff)
downloaddnspython-1966831a7357e804071c332e0ea3cfe0b19fd393.tar.gz
Pull up fcde73a2b6c323e55eaf74192885b2d4922a719a from dnspython.
-rw-r--r--dns/rdtypes/ANY/NSEC3PARAM.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/dns/rdtypes/ANY/NSEC3PARAM.py b/dns/rdtypes/ANY/NSEC3PARAM.py
index f323d3f..ede6863 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)