summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2016-09-11 18:03:46 (GMT)
committerChristian Heimes <christian@python.org>2016-09-11 18:03:46 (GMT)
commit49aed7b782ad94b7b94a779b567546222452bb99 (patch)
tree026dfa19955fc0f0927c5faa2850040bfe32adc0 /Lib
parent8d14abc800df6fbfdfcaa5555dd501fc4507a846 (diff)
downloadcpython-49aed7b782ad94b7b94a779b567546222452bb99.zip
cpython-49aed7b782ad94b7b94a779b567546222452bb99.tar.gz
cpython-49aed7b782ad94b7b94a779b567546222452bb99.tar.bz2
Issue #28078: Add missing colon
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_socket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index 8fc7290..c5d5d25 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):