beremiz
Clone
Summary
Browse
Changes
Graph
Fixed bug when exporting variables data
2013-06-06, Laurent Bessard
0b5d608ed2be
Parents
5a4c5724788e
Children
b6894285d4cc
Fixed bug when exporting variables data
1 files changed, 3 insertions(+), 3 deletions(-)
+3
-3
controls/DebugVariablePanel/DebugVariableGraphicPanel.py
--- 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