summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2018-12-01 07:44:25 -0800
committerBob Halley <halley@dnspython.org>2018-12-01 07:44:25 -0800
commit5991b0a6b573392f2ea2191264a4eef493c20582 (patch)
tree99b7e9202ac4b7bd0ade2dc25833bd01644e0af9
parent60886c8294623aa552dfb2431b596477e882096c (diff)
downloaddnspython-5991b0a6b573392f2ea2191264a4eef493c20582.tar.gz
disable spurious pylint errors for python 2.7
-rw-r--r--tests/test_name.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_name.py b/tests/test_name.py
index 0972972..d5d929c 100644
--- a/tests/test_name.py
+++ b/tests/test_name.py
@@ -27,7 +27,7 @@ import dns.name
import dns.reversename
import dns.e164
-# pylint: disable=line-too-long,unsupported-assignment-operation
+# pylint: disable=line-too-long,unsupported-assignment-operation,invalid-encoded-data
class NameTestCase(unittest.TestCase):