diff options
| author | Bob Halley <halley@dnspython.org> | 2014-08-31 17:05:05 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2014-08-31 17:05:05 -0700 |
| commit | eb195a787259c957c80355566512b4e9c5da5219 (patch) | |
| tree | 22408a6428fb10a3af86bcb5509dde6cf4cb2299 | |
| parent | b87ddf4414b54d4ef1f0b033d99b66743e5847d8 (diff) | |
| download | dnspython-eb195a787259c957c80355566512b4e9c5da5219.tar.gz | |
Fix relativization in RRSIG to_text().
| -rw-r--r-- | dns/rdtypes/ANY/RRSIG.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/rdtypes/ANY/RRSIG.py b/dns/rdtypes/ANY/RRSIG.py index 2e69821..b45e0c9 100644 --- a/dns/rdtypes/ANY/RRSIG.py +++ b/dns/rdtypes/ANY/RRSIG.py @@ -95,7 +95,7 @@ class RRSIG(dns.rdata.Rdata): posixtime_to_sigtime(self.expiration), posixtime_to_sigtime(self.inception), self.key_tag, - self.signer, + self.signer.choose_relativity(origin, relativize), dns.rdata._base64ify(self.signature) ) |
