diff options
| -rw-r--r-- | mitmproxy/connections.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/mitmproxy/connections.py b/mitmproxy/connections.py index 9c47985c..e8fc4fbf 100644 --- a/mitmproxy/connections.py +++ b/mitmproxy/connections.py @@ -286,7 +286,8 @@ class ServerConnection(tcp.TCPClient, stateobject.StateObject):              else:                  path = os.path.join(                      client_certs, -                    self.address[0].encode("idna").decode()) + ".pem" +                    (sni or self.address[0].encode("idna").decode()) + ".pem" +                )                  if os.path.exists(path):                      client_cert = path  | 
