From: Petr Spacek Date: Fri, 16 Jan 2015 12:10:04 +0000 (+0100) Subject: Add missing docstring for BadTTL exception. X-Git-Tag: v1.13.0~35^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6d1deefc501a659647e98942acdeacb3d881e40f;p=thirdparty%2Fdnspython.git Add missing docstring for BadTTL exception. --- diff --git a/dns/ttl.py b/dns/ttl.py index ab6ddf4e..dc92b214 100644 --- a/dns/ttl.py +++ b/dns/ttl.py @@ -18,7 +18,7 @@ import dns.exception class BadTTL(dns.exception.SyntaxError): - pass + """DNS TTL value is not well-formed.""" def from_text(text): """Convert the text form of a TTL to an integer.