From cbb4d4a642f7f58f0dc1a89a4af6fb4bc80db41b Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 16 Dec 2021 21:51:11 -0800 Subject: [PATCH] Fix a typo in the message from make_ssl_certs. (GH-30152) (GH-30161) The file is utils.py not util.py. Automerge-Triggered-By: GH:gpshead (cherry picked from commit 69ef1b59983065ddb0b712dac3b04107c5059735) Co-authored-by: Yilei "Dolee" Yang --- Lib/test/make_ssl_certs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/make_ssl_certs.py b/Lib/test/make_ssl_certs.py index c62896f861da..94a35a64ab1a 100644 --- a/Lib/test/make_ssl_certs.py +++ b/Lib/test/make_ssl_certs.py @@ -307,6 +307,6 @@ def print_cert(path): f.write(cert) unmake_ca() - print("update Lib/test/test_ssl.py and Lib/test/test_asyncio/util.py") + print("update Lib/test/test_ssl.py and Lib/test/test_asyncio/utils.py") print_cert('keycert.pem') print_cert('keycert3.pem')