From: Paul Brossier Date: Tue, 17 Jul 2012 21:10:15 +0000 (-0600) Subject: py-filter.c: fix typo X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7d50c5a789705625b5623686b5f7aa56248ddfb0;p=aubio.git py-filter.c: fix typo --- diff --git a/interfaces/python/py-filter.c b/interfaces/python/py-filter.c index 003331b7..5b9fee64 100644 --- a/interfaces/python/py-filter.c +++ b/interfaces/python/py-filter.c @@ -96,7 +96,7 @@ Py_filter_set_c_weighting (Py_filter * self, PyObject *args) err = aubio_filter_set_c_weighting (self->o, samplerate); if (err > 0) { PyErr_SetString (PyExc_ValueError, - "error when setting filter to A-weighting"); + "error when setting filter to C-weighting"); return NULL; } return Py_None;