From 77bb4b517769f7707514b0f7e3da5762ff0f1cc4 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Mon, 28 Jan 2013 14:55:20 +0100 Subject: Pylint cleanup. Add more dynamic attribute info to IPATypeChecker in make-lint. Remove unnecessary pylint comments. Fix false positivies introduced by Pylint 0.26. https://fedorahosted.org/freeipa/ticket/3379 --- ipapython/ipautil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipapython/ipautil.py') diff --git a/ipapython/ipautil.py b/ipapython/ipautil.py index 9fdd2fd76..c0ac3a1f7 100644 --- a/ipapython/ipautil.py +++ b/ipapython/ipautil.py @@ -775,7 +775,7 @@ def bind_port_responder(port, socket_type=socket.SOCK_STREAM, socket_timeout=Non connection, client_address = s.accept() try: if responder_data: - connection.sendall(responder_data) #pylint: disable=E1101 + connection.sendall(responder_data) finally: connection.close() elif socket_type == socket.SOCK_DGRAM: -- cgit