]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Pull up fcde73a2b6c323e55eaf74192885b2d4922a719a from dnspython.
authorBob Halley <halley@dnspython.org>
Sun, 31 Aug 2014 23:31:20 +0000 (16:31 -0700)
committerBob Halley <halley@dnspython.org>
Sun, 31 Aug 2014 23:31:20 +0000 (16:31 -0700)
dns/rdtypes/ANY/NSEC3PARAM.py

index f323d3f51d9dc03f6d80d2e6e40748d538a5555e..ede686323b15ab80c411714d17bf238f9f2bd2f9 100644 (file)
@@ -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)