diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 13:06:09 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-02 13:06:09 (GMT) |
commit | c72e66a0489ee53aaf89c677c5b709d30b359532 (patch) | |
tree | daa871e7fdabf80f5da22dd1a5d3dc33b5efce52 /Modules/_ssl.c | |
parent | a5ad9da50422a5ce2f80e05b816e74c0e004e247 (diff) | |
download | cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.zip cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.tar.gz cpython-c72e66a0489ee53aaf89c677c5b709d30b359532.tar.bz2 |
Issue #25523: Backported a-to-an corrections.
Diffstat (limited to 'Modules/_ssl.c')
-rw-r--r-- | Modules/_ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index dff5925..17e1b85 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -2788,7 +2788,7 @@ load_verify_locations(PySSLContext *self, PyObject *args, PyObject *kwds) cadata_ascii = PyUnicode_AsASCIIString(cadata); if (cadata_ascii == NULL) { PyErr_SetString(PyExc_TypeError, - "cadata should be a ASCII string or a " + "cadata should be an ASCII string or a " "bytes-like object"); goto error; } |