shithub: aubio

Download patch

ref: 42515ac48d362d119ea1eb1476d12673acab8fac
parent: 1a74ac3c0d8a103200732923f2ba7af1ef0341af
author: Paul Brossier <piem@piem.org>
date: Mon May 2 08:35:24 EDT 2011

python/aubio/plot/keyboard.py: use with_, thanks to Dan Muresan

--- a/python/aubio/plot/keyboard.py
+++ b/python/aubio/plot/keyboard.py
@@ -30,8 +30,8 @@
   yb      = [y0+(y1-y0)*2/3. for i in range(len(xb))]
   ybdelta = [(y1-y0)*1/3. for i in range(len(xb))]
 
-  whites  = Gnuplot.Data(xw,yw,xwdelta,ywdelta,with = 'boxxyerrorbars')
-  blacks  = Gnuplot.Data(xb,yb,xbdelta,ybdelta,with = 'boxxyerrorbars fill solid')
+  whites  = Gnuplot.Data(xw,yw,xwdelta,ywdelta,with_ = 'boxxyerrorbars')
+  blacks  = Gnuplot.Data(xb,yb,xbdelta,ybdelta,with_ = 'boxxyerrorbars fill solid')
 
   return blacks,whites