From 42515ac48d362d119ea1eb1476d12673acab8fac Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 2 May 2011 12:35:24 +0200 Subject: [PATCH] python/aubio/plot/keyboard.py: use with_, thanks to Dan Muresan --- python/aubio/plot/keyboard.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/aubio/plot/keyboard.py b/python/aubio/plot/keyboard.py index 8fe57d9b..2de5d754 100755 --- a/python/aubio/plot/keyboard.py +++ b/python/aubio/plot/keyboard.py @@ -30,8 +30,8 @@ def draw_keyboard(firstnote = 21, lastnote = 108, y0 = 0, y1 = 1): 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 -- 2.26.2