From afcfa783ea31ac98e6137cc983ae3dfeb645a054 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Wed, 1 Jun 2016 14:43:08 +1200 Subject: Satisfy lint --- mitmproxy/protocol/http.py | 4 ++-- mitmproxy/protocol/http2.py | 1 - mitmproxy/protocol/tls.py | 6 ++++-- mitmproxy/proxy/root_context.py | 2 +- mitmproxy/proxy/server.py | 1 + 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/mitmproxy/protocol/http.py b/mitmproxy/protocol/http.py index eb740e3b..ae03ab7f 100644 --- a/mitmproxy/protocol/http.py +++ b/mitmproxy/protocol/http.py @@ -80,7 +80,7 @@ class ConnectServerConnection(object): __nonzero__ = __bool__ -class UpstreamConnectLayer(Layer): +class UpstreamConnectLayer(base.Layer): def __init__(self, ctx, connect_request): super(UpstreamConnectLayer, self).__init__(ctx) @@ -120,7 +120,7 @@ class UpstreamConnectLayer(Layer): self.server_conn.address = address -class HttpLayer(Layer): +class HttpLayer(base.Layer): def __init__(self, ctx, mode): super(HttpLayer, self).__init__(ctx) diff --git a/mitmproxy/protocol/http2.py b/mitmproxy/protocol/http2.py index 0fa4d77b..9fc409a2 100644 --- a/mitmproxy/protocol/http2.py +++ b/mitmproxy/protocol/http2.py @@ -18,7 +18,6 @@ from mitmproxy import protocol from netlib import http from netlib import tcp from netlib.http import http2 -from netlib.http import url class SafeH2Connection(connection.H2Connection): diff --git a/mitmproxy/protocol/tls.py b/mitmproxy/protocol/tls.py index 0bbb2cc2..9f883b2b 100644 --- a/mitmproxy/protocol/tls.py +++ b/mitmproxy/protocol/tls.py @@ -302,8 +302,10 @@ class TlsClientHello(object): try: return cls(raw_client_hello) except construct.ConstructError as e: - raise exceptions.TlsProtocolException('Cannot parse Client Hello: %s, Raw Client Hello: %s' % - (repr(e), raw_client_hello.encode("hex"))) + raise exceptions.TlsProtocolException( + 'Cannot parse Client Hello: %s, Raw Client Hello: %s' % + (repr(e), raw_client_hello.encode("hex")) + ) def __repr__(self): return "TlsClientHello( sni: %s alpn_protocols: %s, cipher_suites: %s)" % \ diff --git a/mitmproxy/proxy/root_context.py b/mitmproxy/proxy/root_context.py index 6a4162df..57183c7e 100644 --- a/mitmproxy/proxy/root_context.py +++ b/mitmproxy/proxy/root_context.py @@ -48,7 +48,7 @@ class RootContext(object): def _next_layer(self, top_layer): try: d = top_layer.client_conn.rfile.peek(3) - except netlib.exceptions.TcpException as e: + except netlib.exceptions.TcpException as e: six.reraise(exceptions.ProtocolException, exceptions.ProtocolException(str(e)), sys.exc_info()[2]) client_tls = protocol.is_tls_record_magic(d) diff --git a/mitmproxy/proxy/server.py b/mitmproxy/proxy/server.py index 933d043d..7e96911a 100644 --- a/mitmproxy/proxy/server.py +++ b/mitmproxy/proxy/server.py @@ -14,6 +14,7 @@ from mitmproxy.proxy import root_context from netlib import tcp from netlib.http import http1 + class DummyServer: bound = False -- cgit v1.2.3