summaryrefslogtreecommitdiffstats
path: root/Modules/_hashopenssl.c
diff options
context:
space:
mode:
authorEmmanuel Arias <emmanuelarias30@gmail.com>2019-03-06 14:35:35 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-03-06 14:35:35 (GMT)
commitb71e28ea91259ca3914e2ff84fc126795ea6b848 (patch)
treef697c252c3cef43bf0544f6e52f8b8f4ce8c86c3 /Modules/_hashopenssl.c
parent25d13f37aa6743282d0b8b4df687ff89999964b2 (diff)
downloadcpython-b71e28ea91259ca3914e2ff84fc126795ea6b848.zip
cpython-b71e28ea91259ca3914e2ff84fc126795ea6b848.tar.gz
cpython-b71e28ea91259ca3914e2ff84fc126795ea6b848.tar.bz2
bpo-36209: Fix typo on hashlib error message (GH-12194)
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 aae558c..e560c18 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;
}