From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 6 Mar 2019 14:54:54 +0000 (-0800) Subject: bpo-36209: Fix typo on hashlib error message (GH-12194) X-Git-Tag: v3.7.3rc1~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=42c649347a11789666c461ecbd3bdca27b957c9b;p=thirdparty%2FPython%2Fcpython.git bpo-36209: Fix typo on hashlib error message (GH-12194) (cherry picked from commit b71e28ea91259ca3914e2ff84fc126795ea6b848) Co-authored-by: Emmanuel Arias --- diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index b1f0d397aa7e..b69f16c61a50 100644 --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c @@ -826,7 +826,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; }