controls/DebugVariablePanel/DebugVariableGraphicPanel.py
changeset 1231 0b5d608ed2be
parent 1227 01e86190f8c7
child 1264 27c8578670c8
--- 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