summaryrefslogtreecommitdiff
path: root/dns/rcode.py
diff options
context:
space:
mode:
authorPetr Spacek <pspacek@redhat.com>2015-01-15 17:27:27 +0100
committerPetr Spacek <pspacek@redhat.com>2015-02-12 12:34:17 +0100
commit90e85fa5196159a12f005d0e3383e893283a707c (patch)
tree81d434dca55dfd34e585649990871518175d0bf4 /dns/rcode.py
parenta4bdb7113dba8ed819d8454a1e8f2916ee33d9a6 (diff)
downloaddnspython-90e85fa5196159a12f005d0e3383e893283a707c.tar.gz
Amend doc strings for all DNSExceptions to make them suitable for direct printing.
Diffstat (limited to 'dns/rcode.py')
-rw-r--r--dns/rcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/rcode.py b/dns/rcode.py
index 7807782..cd43ab5 100644
--- a/dns/rcode.py
+++ b/dns/rcode.py
@@ -53,7 +53,7 @@ _by_value = dict([(y, x) for x, y in _by_text.iteritems()])
class UnknownRcode(dns.exception.DNSException):
- """Raised if an rcode is unknown."""
+ """A DNS rcode is unknown."""
pass
def from_text(text):