Skip to content

Commit

Permalink
More flake8 issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
truthbk committed Oct 19, 2015
1 parent 21effc2 commit 390258b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions checks.d/http_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ def _new_pool(self, scheme, host, port):
return WeakCiphersHTTPSConnectionPool(host, port, **(self.connection_pool_kw))
return super(WeakCiphersPoolManager, self)._new_pool(scheme, host, port)


class WeakCiphersAdapter(HTTPAdapter):
""""Transport adapter" that allows us to use TLS_RSA_WITH_RC4_128_MD5."""

def init_poolmanager(self, connections, maxsize, block=False,
**pool_kwargs):
def init_poolmanager(self, connections, maxsize, block=False, **pool_kwargs):
# Rewrite of the
# requests.adapters.HTTPAdapter.init_poolmanager method
# to use WeakCiphersPoolManager instead of
Expand Down

0 comments on commit 390258b

Please sign in to comment.