From 49aed7b782ad94b7b94a779b567546222452bb99 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sun, 11 Sep 2016 20:03:46 +0200 Subject: [PATCH] Issue #28078: Add missing colon --- Lib/test/test_socket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 8fc7290c91..c5d5d258b9 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -5349,7 +5349,7 @@ class LinuxKernelCryptoAPI(unittest.TestCase): # type / algorithm is not available sock.close() raise unittest.SkipTest(str(e), typ, name) - else + else: return sock def test_sha256(self): -- 2.40.0