From: Emmanuel Arias Date: Wed, 6 Mar 2019 14:35:35 +0000 (-0300) Subject: bpo-36209: Fix typo on hashlib error message (GH-12194) X-Git-Tag: v3.8.0a3~158 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b71e28ea91259ca3914e2ff84fc126795ea6b848;p=thirdparty%2FPython%2Fcpython.git bpo-36209: Fix typo on hashlib error message (GH-12194) --- diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index aae558c99303..e560c18b63c3 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; }