summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-05-11 10:59:54 -0700
committerBob Halley <halley@dnspython.org>2020-05-11 10:59:54 -0700
commit99f5cf560b3df0f5a024952a846f599e51c41c7a (patch)
tree5116ed35bd90b5c2dc0ebc1c266cf1d29851174a
parentb54eeca23d9f6e280c34d6007185bac5847d1a55 (diff)
downloaddnspython-99f5cf560b3df0f5a024952a846f599e51c41c7a.tar.gz
fix quoting
-rw-r--r--dns/dnssec.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/dns/dnssec.py b/dns/dnssec.py
index 7cb0d80..fe00a9d 100644
--- a/dns/dnssec.py
+++ b/dns/dnssec.py
@@ -291,7 +291,7 @@ def _validate_rrsig(rrset, rrsig, keys, origin=None, now=None):
exception if validation is not successful.
*rrset*, the RRset to validate. This can be a
- ``dns.rrset.RRset`` or a (``dns.name.Name`, ``dns.rdataset.Rdataset``)
+ ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``)
tuple.
*rrsig*, a ``dns.rdata.Rdata``, the signature to validate.
@@ -299,7 +299,7 @@ def _validate_rrsig(rrset, rrsig, keys, origin=None, now=None):
*keys*, the key dictionary, used to find the DNSKEY associated
with a given name. The dictionary is keyed by a
``dns.name.Name``, and has ``dns.node.Node`` or
- `dns.rdataset.Rdataset`` values.
+ ``dns.rdataset.Rdataset`` values.
*origin*, a ``dns.name.Name`` or ``None``, the origin to use for relative
names.
@@ -468,7 +468,7 @@ def _validate(rrset, rrsigset, keys, origin=None, now=None):
validates, or throws an exception if no signature validates.
*rrset*, the RRset to validate. This can be a
- ``dns.rrset.RRset`` or a (``dns.name.Name`, ``dns.rdataset.Rdataset``)
+ ``dns.rrset.RRset`` or a (``dns.name.Name``, ``dns.rdataset.Rdataset``)
tuple.
*rrsigset*, the signature RRset. This can be a
@@ -478,7 +478,7 @@ def _validate(rrset, rrsigset, keys, origin=None, now=None):
*keys*, the key dictionary, used to find the DNSKEY associated
with a given name. The dictionary is keyed by a
``dns.name.Name``, and has ``dns.node.Node`` or
- `dns.rdataset.Rdataset`` values.
+ ``dns.rdataset.Rdataset`` values.
*origin*, a ``dns.name.Name``, the origin to use for relative names;
defaults to None.