shithub: aubio

Download patch

ref: 7d50c5a789705625b5623686b5f7aa56248ddfb0
parent: 97514e271e7212d5c2b6e82c901bda254b63d60f
author: Paul Brossier <piem@piem.org>
date: Tue Jul 17 11:10:15 EDT 2012

py-filter.c: fix typo

--- a/interfaces/python/py-filter.c
+++ b/interfaces/python/py-filter.c
@@ -96,7 +96,7 @@
   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;