summaryrefslogtreecommitdiff
path: root/Modules/_hashopenssl.c
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-03-06 06:54:54 -0800
committerGitHub <noreply@github.com>2019-03-06 06:54:54 -0800
commit42c649347a11789666c461ecbd3bdca27b957c9b (patch)
treeb8359b758e46b10c6351af4a45bae99310b3964a /Modules/_hashopenssl.c
parent279657bac2856039ba422c18a3d7f227b455e9d6 (diff)
downloadcpython-git-42c649347a11789666c461ecbd3bdca27b957c9b.tar.gz
bpo-36209: Fix typo on hashlib error message (GH-12194)
(cherry picked from commit b71e28ea91259ca3914e2ff84fc126795ea6b848) Co-authored-by: Emmanuel Arias <emmanuelarias30@gmail.com>
Diffstat (limited to 'Modules/_hashopenssl.c')
-rw-r--r--Modules/_hashopenssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c
index b1f0d397aa..b69f16c61a 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;
}