diff options
| author | Petr Spacek <pspacek@redhat.com> | 2015-01-15 17:27:27 +0100 |
|---|---|---|
| committer | Petr Spacek <pspacek@redhat.com> | 2015-02-12 12:34:17 +0100 |
| commit | 90e85fa5196159a12f005d0e3383e893283a707c (patch) | |
| tree | 81d434dca55dfd34e585649990871518175d0bf4 /dns/opcode.py | |
| parent | a4bdb7113dba8ed819d8454a1e8f2916ee33d9a6 (diff) | |
| download | dnspython-90e85fa5196159a12f005d0e3383e893283a707c.tar.gz | |
Amend doc strings for all DNSExceptions to make them suitable for direct printing.
Diffstat (limited to 'dns/opcode.py')
| -rw-r--r-- | dns/opcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/opcode.py b/dns/opcode.py index 3258c34..5a68517 100644 --- a/dns/opcode.py +++ b/dns/opcode.py @@ -39,7 +39,7 @@ _by_value = dict([(y, x) for x, y in _by_text.iteritems()]) class UnknownOpcode(dns.exception.DNSException): - """Raised if an opcode is unknown.""" + """An DNS opcode is unknown.""" pass def from_text(text): |
