beremiz

Fixed bug when exporting variables data

2013-06-06, Laurent Bessard
0b5d608ed2be
Parents 5a4c5724788e
Children b6894285d4cc
Fixed bug when exporting variables data
--- a/controls/DebugVariablePanel/DebugVariableGraphicPanel.py Thu Jun 06 14:24:22 2013 +0200
+++ b/controls/DebugVariablePanel/DebugVariableGraphicPanel.py Thu Jun 06 16:02:46 2013 +0200
@@ -68,9 +68,9 @@
if len(data) == 0:
continue
- next = (data[0][0]
- if next_tick is None
- else min(next_tick, data[0][0]))
+ next_tick = (data[0][0]
+ if next_tick is None
+ else min(next_tick, data[0][0]))
return next_tick