silence pylint in Python 3-specific portion of ipalib/rpc.py

Reviewed-By: Tomas Babej <tbabej@redhat.com>
This commit is contained in:
Martin Babinsky 2015-10-27 18:18:26 +01:00 committed by Tomas Babej
parent 3f0707a199
commit 82fd4250b9

View File

@ -656,7 +656,7 @@ class KerbTransport(SSLTransport):
else:
connection.putrequest("POST", handler)
headers.append(("User-Agent", self.user_agent))
self.send_headers(connection, headers)
self.send_headers(connection, headers) # pylint: disable=E1101
self.send_content(connection, request_body)
return connection