From: Yilei "Dolee" Yang Date: Fri, 17 Dec 2021 05:08:18 +0000 (-0800) Subject: Fix a typo in the message from make_ssl_certs. (GH-30152) X-Git-Tag: v3.11.0a4~178 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=69ef1b59983065ddb0b712dac3b04107c5059735;p=thirdparty%2FPython%2Fcpython.git Fix a typo in the message from make_ssl_certs. (GH-30152) The file is utils.py not util.py. Automerge-Triggered-By: GH:gpshead --- 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')