From: Paul Brossier Date: Mon, 2 May 2011 10:35:24 +0000 (+0200) Subject: python/aubio/plot/keyboard.py: use with_, thanks to Dan Muresan X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=42515ac48d362d119ea1eb1476d12673acab8fac;p=aubio.git python/aubio/plot/keyboard.py: use with_, thanks to Dan Muresan --- 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