From: Mark Wooding Date: Mon, 14 Oct 2019 00:00:20 +0000 (+0100) Subject: algorithms.c (KECCAK.extract): Fix method name in keyword-args string. X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/commitdiff_plain/ae5dbbad6a05a824599c6655ec9ae9d579e9c30d?ds=sidebyside algorithms.c (KECCAK.extract): Fix method name in keyword-args string. --- diff --git a/algorithms.c b/algorithms.c index dcfb22d..24ebd74 100644 --- a/algorithms.c +++ b/algorithms.c @@ -1645,7 +1645,7 @@ static PyObject *kxvikmeth_extract(PyObject *me, PyObject *arg) unsigned i; unsigned n; - if (!PyArg_ParseTuple(arg, "O&:mix", convuint, &n)) goto end; + if (!PyArg_ParseTuple(arg, "O&:extract", convuint, &n)) goto end; if (n > 200) VALERR("out of range"); rc = bytestring_pywrap(0, n); q = (octet *)PyString_AS_STRING(rc);