diff options
author | Christian Heimes <christian@python.org> | 2016-09-11 18:03:46 (GMT) |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2016-09-11 18:03:46 (GMT) |
commit | 49aed7b782ad94b7b94a779b567546222452bb99 (patch) | |
tree | 026dfa19955fc0f0927c5faa2850040bfe32adc0 | |
parent | 8d14abc800df6fbfdfcaa5555dd501fc4507a846 (diff) | |
download | cpython-49aed7b782ad94b7b94a779b567546222452bb99.zip cpython-49aed7b782ad94b7b94a779b567546222452bb99.tar.gz cpython-49aed7b782ad94b7b94a779b567546222452bb99.tar.bz2 |
Issue #28078: Add missing colon
-rw-r--r-- | Lib/test/test_socket.py | 2 |
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): |