From 7d50c5a789705625b5623686b5f7aa56248ddfb0 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Tue, 17 Jul 2012 15:10:15 -0600 Subject: [PATCH] py-filter.c: fix typo --- interfaces/python/py-filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.26.2