From: Bob Halley Date: Tue, 12 Jan 2010 23:25:44 +0000 (-0800) Subject: fix typo X-Git-Tag: v1.8.0~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cec8ac12682274f765ae8c8c76ce78d7eb6d2e64;p=thirdparty%2Fdnspython.git fix typo --- diff --git a/dns/rdata.py b/dns/rdata.py index 7e8d606e..d88faf3b 100644 --- a/dns/rdata.py +++ b/dns/rdata.py @@ -320,7 +320,7 @@ class GenericRdata(Rdata): def from_text(cls, rdclass, rdtype, tok, origin = None, relativize = True): token = tok.get() - if not token.is_identifier() or token.value != '\#' + if not token.is_identifier() or token.value != '\#': raise dns.exception.SyntaxError, \ r'generic rdata does not start with \#' length = tok.get_int()