Skip to content

Commit

Permalink
bpo-36209: Fix typo on hashlib error message (GH-12194)
Browse files Browse the repository at this point in the history
  • Loading branch information
eamanu authored and vstinner committed Mar 6, 2019
1 parent 25d13f3 commit b71e28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_hashopenssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit b71e28e

Please sign in to comment.