diff options
| author | Sergey Shepelev <temotor@gmail.com> | 2022-12-06 15:56:21 +0300 |
|---|---|---|
| committer | Sergey Shepelev <temotor@gmail.com> | 2022-12-06 17:22:32 +0300 |
| commit | cb80c0ab81373f079ae5a139adc2521519c8f95c (patch) | |
| tree | 27c02922e308a6b56a4130bed791a74cb82ceb22 /eventlet | |
| parent | 650db31c11502c07629ae48f15cae68177069f38 (diff) | |
| download | eventlet-457-test.tar.gz | |
green urlopen was blocking on https457-test
fixes https://github.com/eventlet/eventlet/issues/457
Diffstat (limited to 'eventlet')
| -rw-r--r-- | eventlet/green/http/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eventlet/green/http/client.py b/eventlet/green/http/client.py index e4bd2ad..744a074 100644 --- a/eventlet/green/http/client.py +++ b/eventlet/green/http/client.py @@ -1443,7 +1443,7 @@ class HTTPConnection: raise try: - import ssl + from eventlet.green import ssl except ImportError: pass else: |
