From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 17 Dec 2021 05:51:11 +0000 (-0800) Subject: Fix a typo in the message from make_ssl_certs. (GH-30152) (GH-30161) X-Git-Tag: v3.10.2~72 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cbb4d4a642f7f58f0dc1a89a4af6fb4bc80db41b;p=thirdparty%2FPython%2Fcpython.git 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 --- 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 @@ if __name__ == '__main__': 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')