diff options
author | Emmanuel Arias <emmanuelarias30@gmail.com> | 2019-03-06 14:35:35 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-03-06 14:35:35 (GMT) |
commit | b71e28ea91259ca3914e2ff84fc126795ea6b848 (patch) | |
tree | f697c252c3cef43bf0544f6e52f8b8f4ce8c86c3 /Modules/_hashopenssl.c | |
parent | 25d13f37aa6743282d0b8b4df687ff89999964b2 (diff) | |
download | cpython-b71e28ea91259ca3914e2ff84fc126795ea6b848.zip cpython-b71e28ea91259ca3914e2ff84fc126795ea6b848.tar.gz cpython-b71e28ea91259ca3914e2ff84fc126795ea6b848.tar.bz2 |
bpo-36209: Fix typo on hashlib error message (GH-12194)
Diffstat (limited to 'Modules/_hashopenssl.c')
-rw-r--r-- | Modules/_hashopenssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index aae558c..e560c18 100644 --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c @@ -775,7 +775,7 @@ _hashlib_scrypt_impl(PyObject *module, Py_buffer *password, Py_buffer *salt, if (!retval) { /* sorry, can't do much better */ PyErr_SetString(PyExc_ValueError, - "Invalid paramemter combination for n, r, p, maxmem."); + "Invalid parameter combination for n, r, p, maxmem."); return NULL; } |