Skip to content

Commit 1583049

Browse files
committed
Fix whitespace
1 parent 5093f92 commit 1583049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/http/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ def connect(self):
938938
(self.host,self.port), self.timeout, self.source_address)
939939
# Might fail in OSs that don't implement TCP_NODELAY
940940
try:
941-
self.sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
941+
self.sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
942942
except OSError as e:
943943
if e.errno != errno.ENOPROTOOPT:
944944
raise

0 commit comments

Comments
 (0)