From: Mark Wooding Date: Fri, 11 Oct 2019 09:00:46 +0000 (+0100) Subject: ec.c: Fix reported function name in `ec2osp'. X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/commitdiff_plain/1c6b925f0cf913ce3100c2ae3bcaed26a3f34bc1?ds=sidebyside ec.c: Fix reported function name in `ec2osp'. --- diff --git a/ec.c b/ec.c index 0dd04d2..7fd369d 100644 --- a/ec.c +++ b/ec.c @@ -302,7 +302,7 @@ static PyObject *epmeth_ec2osp(PyObject *me, PyObject *arg, PyObject *kw) int len; char *kwlist[] = { "flags", 0 }; - if (!PyArg_ParseTupleAndKeywords(arg, kw, "|i:ectosp", kwlist, &f)) + if (!PyArg_ParseTupleAndKeywords(arg, kw, "|i:ec2osp", kwlist, &f)) return (0); len = c->f->noctets * 2 + 1; rc = bytestring_pywrap(0, len);