diff -r ddf4f19eb07a -r 8f63691ccb7f web/views/plots.py --- a/web/views/plots.py Fri Feb 26 13:21:13 2010 +0100 +++ b/web/views/plots.py Fri Feb 26 13:24:47 2010 +0100 @@ -94,7 +94,7 @@ # datetime labels on tooltips is to insert an additional column # cf. function onPlotHover in cubicweb.flot.js if self.timemode: - plot = [(datetime2ticks(x), y, datetime2ticks(x)) for x,y in plot] + plot = [(datetime2ticks(x), y, datetime2ticks(x)) for x, y in plot] return dumps(plot) def _render(self, req, width=500, height=400):