diff options
author | Yilei "Dolee" Yang <yileiyang9@gmail.com> | 2021-12-17 05:08:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 05:08:18 (GMT) |
commit | 69ef1b59983065ddb0b712dac3b04107c5059735 (patch) | |
tree | bdabf85616f153e34d7b3f1bbfcacd60f9b78673 /Lib | |
parent | 8d6155ee9d1b05946f951d0ba602b9f63810fe0f (diff) | |
download | cpython-69ef1b59983065ddb0b712dac3b04107c5059735.zip cpython-69ef1b59983065ddb0b712dac3b04107c5059735.tar.gz cpython-69ef1b59983065ddb0b712dac3b04107c5059735.tar.bz2 |
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
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/make_ssl_certs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/make_ssl_certs.py b/Lib/test/make_ssl_certs.py index c62896f..94a35a6 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') |