diff native/PyPluginObject.cpp @ 147:8b08cbbdfe77

Python 3: make error message note that initialise args must be ints; fix erroneous float arg
author Chris Cannam
date Tue, 08 Nov 2016 11:41:09 +0000
parents aa96f69e2f14
children
line wrap: on
line diff
--- a/native/PyPluginObject.cpp	Tue Nov 08 11:40:39 2016 +0000
+++ b/native/PyPluginObject.cpp	Tue Nov 08 11:41:09 2016 +0000
@@ -354,7 +354,7 @@
                            &stepSize,
                            &blockSize)) {
         PyErr_SetString(PyExc_TypeError,
-                        "initialise() takes channel count, step size, and block size arguments");
+                        "initialise() takes channel count (int), step size (int), and block size (int) arguments");
         return 0;
     }