# HG changeset patch # User Nicolas Chauvat # Date 1243522754 -7200 # Node ID 8a9d8f1ee10075b49ce3c0cf627da8978e5ff6b1 # Parent 59507a12a7f4b77ed002c3c5d9b04a53601b35c6 bugfix for plots diff -r 59507a12a7f4 -r 8a9d8f1ee100 web/views/plots.py --- a/web/views/plots.py Thu May 28 15:09:35 2009 +0200 +++ b/web/views/plots.py Thu May 28 16:59:14 2009 +0200 @@ -139,7 +139,7 @@ nbcols = len(self.rset.rows[0]) for col in xrange(1, nbcols): data = [row[col] for row in self.rset] - plots.append(filterout_nulls(abscissa, plot)) + plots.append(filterout_nulls(abscissa, data)) plotwidget = FlotPlotWidget(varnames, plots, timemode=self.timemode) plotwidget.render(self.req, width, height, w=self.w)