Skip to content

Commit b71e28e

Browse files
eamanuvstinner
authored andcommitted
bpo-36209: Fix typo on hashlib error message (GH-12194)
1 parent 25d13f3 commit b71e28e

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
@@ -775,7 +775,7 @@ _hashlib_scrypt_impl(PyObject *module, Py_buffer *password, Py_buffer *salt,
775775
if (!retval) {
776776
/* sorry, can't do much better */
777777
PyErr_SetString(PyExc_ValueError,
778-
"Invalid paramemter combination for n, r, p, maxmem.");
778+
"Invalid parameter combination for n, r, p, maxmem.");
779779
return NULL;
780780
}
781781

0 commit comments

Comments
 (0)