From b71e28ea91259ca3914e2ff84fc126795ea6b848 Mon Sep 17 00:00:00 2001 From: Emmanuel Arias Date: Wed, 6 Mar 2019 11:35:35 -0300 Subject: [PATCH] bpo-36209: Fix typo on hashlib error message (GH-12194) --- Modules/_hashopenssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index aae558c9930..e560c18b63c 100644 --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c @@ -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; }