# HG changeset patch # User Laurent Bessard # Date 1370527366 -7200 # Node ID 0b5d608ed2be43efeb3490f81c6f69d011b65e67 # Parent 5a4c5724788e22b80e50c3e1f81f730935c51268 Fixed bug when exporting variables data diff -r 5a4c5724788e -r 0b5d608ed2be 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