diff options
Diffstat (limited to 'Lib/socket.py')
-rw-r--r-- | Lib/socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socket.py b/Lib/socket.py index 7cd7889446..d0f09111a9 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -63,7 +63,7 @@ if (sys.platform.lower().startswith("win") def ssl(sock, keyfile=None, certfile=None): if hasattr(sock, "_sock"): sock = sock._sock - return _realsslcall(sock, keyfile, certfile) + return _realsslcall(sock, keyfile, certfile) # WSA error codes |