[Python-checkins] Fix a typo in the message from make_ssl_certs. (GH-30152)

miss-islington webhook-mailer at python.org
Fri Dec 17 00:49:57 EST 2021


https://github.com/python/cpython/commit/212014d8c4eca546104a719938899a51bd497487
commit: 212014d8c4eca546104a719938899a51bd497487
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-12-16T21:49:37-08:00
summary:

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
(cherry picked from commit 69ef1b59983065ddb0b712dac3b04107c5059735)

Co-authored-by: Yilei "Dolee" Yang <yileiyang9 at gmail.com>

files:
M Lib/test/make_ssl_certs.py

diff --git a/Lib/test/make_ssl_certs.py b/Lib/test/make_ssl_certs.py
index c62896f861dab..94a35a64ab1ab 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')



More information about the Python-checkins mailing list