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

This commit is contained in:
Emmanuel Arias 2019-03-06 11:35:35 -03:00 committed by Victor Stinner
parent 25d13f37aa
commit b71e28ea91
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}