diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2013-01-18 17:07:35 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2013-01-18 17:07:35 +1300 |
commit | 1499529e62e6d2892a6908472398854094af89fb (patch) | |
tree | bf006e2f8d39f7d082899604f1aab1a910e7f83f /netlib/tcp.py | |
parent | ad92d37147e667068ed3458cf1256c187fd0f994 (diff) | |
download | mitmproxy-1499529e62e6d2892a6908472398854094af89fb.tar.gz mitmproxy-1499529e62e6d2892a6908472398854094af89fb.tar.bz2 mitmproxy-1499529e62e6d2892a6908472398854094af89fb.zip |
Fix client cert typo.
Diffstat (limited to 'netlib/tcp.py')
-rw-r--r-- | netlib/tcp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/tcp.py b/netlib/tcp.py index 9c5cfa64..afb7e059 100644 --- a/netlib/tcp.py +++ b/netlib/tcp.py @@ -177,7 +177,7 @@ class TCPClient: if not options is None: ctx.set_options(options) if clientcert: - context.use_certificate_file(self.clientcert) + context.use_certificate_file(clientcert) self.connection = SSL.Connection(context, self.connection) self.ssl_established = True if sni: |