Kaydet (Commit) b71e28ea authored tarafından Emmanuel Arias's avatar Emmanuel Arias Kaydeden (comit) Victor Stinner

bpo-36209: Fix typo on hashlib error message (GH-12194)

üst 25d13f37
...@@ -775,7 +775,7 @@ _hashlib_scrypt_impl(PyObject *module, Py_buffer *password, Py_buffer *salt, ...@@ -775,7 +775,7 @@ _hashlib_scrypt_impl(PyObject *module, Py_buffer *password, Py_buffer *salt,
if (!retval) { if (!retval) {
/* sorry, can't do much better */ /* sorry, can't do much better */
PyErr_SetString(PyExc_ValueError, PyErr_SetString(PyExc_ValueError,
"Invalid paramemter combination for n, r, p, maxmem."); "Invalid parameter combination for n, r, p, maxmem.");
return NULL; return NULL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment