mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-27 02:24:18 +00:00
fix tests on Windows
This commit is contained in:
parent
dbadc1b613
commit
d5eff70b6e
@ -7,6 +7,7 @@ import threading
|
|||||||
import time
|
import time
|
||||||
import traceback
|
import traceback
|
||||||
from OpenSSL import SSL
|
from OpenSSL import SSL
|
||||||
|
import OpenSSL
|
||||||
|
|
||||||
from . import certutils
|
from . import certutils
|
||||||
|
|
||||||
@ -301,6 +302,10 @@ class _Connection(object):
|
|||||||
self.connection.shutdown()
|
self.connection.shutdown()
|
||||||
except SSL.Error:
|
except SSL.Error:
|
||||||
pass
|
pass
|
||||||
|
except KeyError as e:
|
||||||
|
# Workaround for https://github.com/pyca/pyopenssl/pull/183
|
||||||
|
if OpenSSL.__version__ != "0.14":
|
||||||
|
raise e
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Creates an SSL Context.
|
Creates an SSL Context.
|
||||||
|
Loading…
Reference in New Issue
Block a user