# HG changeset patch # User Chris Cannam # Date 1417025860 0 # Node ID 9dd449a19004b65eb245fa4708d712d5362c1541 # Parent 55fcd0e3e513debb693bad590a792fd490d1e90c Doc fix diff -r 55fcd0e3e513 -r 9dd449a19004 PyPluginObject.cpp --- a/PyPluginObject.cpp Wed Nov 26 18:08:53 2014 +0000 +++ b/PyPluginObject.cpp Wed Nov 26 18:17:40 2014 +0000 @@ -438,7 +438,7 @@ &pyBuffer, // Audio data &pyRealTime)) { // TimeStamp PyErr_SetString(PyExc_TypeError, - "process() takes plugin handle (object), buffer (list of arrays of floats, one array per channel) and timestamp (RealTime) arguments"); + "process() takes plugin handle (object), buffer (2D array or list of arrays, one row per channel) and timestamp (RealTime) arguments"); return 0; } if (!PyRealTime_Check(pyRealTime)) {