summaryrefslogtreecommitdiff
path: root/urllib3/util/connection.py
diff options
context:
space:
mode:
Diffstat (limited to 'urllib3/util/connection.py')
-rw-r--r--urllib3/util/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urllib3/util/connection.py b/urllib3/util/connection.py
index 859aec6e..6de6897a 100644
--- a/urllib3/util/connection.py
+++ b/urllib3/util/connection.py
@@ -68,7 +68,7 @@ def create_connection(address, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
sock = socket.socket(af, socktype, proto)
# If provided, set socket level options before connecting.
- # This is the only addition urllib3 makes to this function.
+ # This is the only addition urllib4 makes to this function.
_set_socket_options(sock, socket_options)
if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT: