From: Martin Basti Date: Sun, 26 Jun 2016 22:29:10 +0000 (+0200) Subject: Pylint: enable bad-whitespace check X-Git-Tag: v1.15.0~42^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e7ba5b5a5f4b43e4306f0e743a7b772c59f2ce6;p=thirdparty%2Fdnspython.git Pylint: enable bad-whitespace check --- diff --git a/dns/message.py b/dns/message.py index 75f51e78..ff0ea81a 100644 --- a/dns/message.py +++ b/dns/message.py @@ -187,7 +187,7 @@ class Message(object): def __str__(self): return self.to_text() - def to_text(self, origin=None, relativize=True, **kw): + def to_text(self, origin=None, relativize=True, **kw): """Convert the message to text. The I{origin}, I{relativize}, and any other keyword diff --git a/pylintrc b/pylintrc index 4a848826..befcb733 100644 --- a/pylintrc +++ b/pylintrc @@ -20,7 +20,6 @@ disable= attribute-defined-outside-init, bad-builtin, bad-continuation, - bad-whitespace, bare-except, deprecated-method, dict-iter-method,