From b1b7823667347f33f486db2adea2d4161e131bfd Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Tue, 30 Jul 2024 21:49:52 -0700 Subject: [PATCH] Fix indentation on the continued str line. --- Lib/socket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/socket.py b/Lib/socket.py index fcbfd4db687c13..9207101dcf9d58 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -602,7 +602,7 @@ def _fallback_socketpair(family=AF_INET, type=SOCK_STREAM, proto=0): host = _LOCALHOST_V6 else: raise ValueError("Only AF_INET and AF_INET6 socket address families " - "are supported") + "are supported") if type != SOCK_STREAM: raise ValueError("Only SOCK_STREAM socket type is supported") if proto != 0: