Fixed bug when exporting variables data
authorLaurent Bessard
Thu, 06 Jun 2013 16:02:46 +0200
changeset 1231 0b5d608ed2be
parent 1230 5a4c5724788e
child 1232 b6894285d4cc
Fixed bug when exporting variables data
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