]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-36209: Fix typo on hashlib error message (GH-12194)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 6 Mar 2019 14:54:54 +0000 (06:54 -0800)
committerGitHub <noreply@github.com>
Wed, 6 Mar 2019 14:54:54 +0000 (06:54 -0800)
(cherry picked from commit b71e28ea91259ca3914e2ff84fc126795ea6b848)

Co-authored-by: Emmanuel Arias <emmanuelarias30@gmail.com>
Modules/_hashopenssl.c

index b1f0d397aa7e45ef9510c8167b59dcf40aebcbc4..b69f16c61a506b775dbc959abf1d89dd1393191a 100644 (file)
@@ -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;
    }