From: Martin Date: Sat, 2 Jul 2016 00:26:15 +0000 (+0200) Subject: Pylint: tests: remove semicolon X-Git-Tag: v1.15.0~40^2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=889d8dd77c38e6ce0ed64aaf5c7cf994f997962a;p=thirdparty%2Fdnspython.git Pylint: tests: remove semicolon --- diff --git a/tests/test_bugs.py b/tests/test_bugs.py index 3d780b47..30f1dae0 100644 --- a/tests/test_bugs.py +++ b/tests/test_bugs.py @@ -58,7 +58,7 @@ class BugsTestCase(unittest.TestCase): def test_CAA_from_wire(self): rdata = dns.rdata.from_text(dns.rdataclass.IN, dns.rdatatype.CAA, - u'0 issue "ca.example.net"'); + u'0 issue "ca.example.net"') f = BytesIO() rdata.to_wire(f) wire = f.getvalue()