projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
97514e2
)
py-filter.c: fix typo
author
Paul Brossier
<piem@piem.org>
Tue, 17 Jul 2012 21:10:15 +0000
(15:10 -0600)
committer
Paul Brossier
<piem@piem.org>
Tue, 17 Jul 2012 21:10:15 +0000
(15:10 -0600)
interfaces/python/py-filter.c
patch
|
blob
|
history
diff --git
a/interfaces/python/py-filter.c
b/interfaces/python/py-filter.c
index 003331b747b28ca2292dcb4a2e3b02317f17ea20..5b9fee6457326be0e075431f0852ae144e213b0d 100644
(file)
--- 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;