Skip to content

Commit 42c6493

Browse files
bpo-36209: Fix typo on hashlib error message (GH-12194)
(cherry picked from commit b71e28e) Co-authored-by: Emmanuel Arias <[email protected]>
1 parent 279657b commit 42c6493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_hashopenssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ _hashlib_scrypt_impl(PyObject *module, Py_buffer *password, Py_buffer *salt,
826826
if (!retval) {
827827
/* sorry, can't do much better */
828828
PyErr_SetString(PyExc_ValueError,
829-
"Invalid paramemter combination for n, r, p, maxmem.");
829+
"Invalid parameter combination for n, r, p, maxmem.");
830830
return NULL;
831831
}
832832

0 commit comments

Comments
 (0)