Browse Source

small fix for error appearing after the merge

Simon Van Mierlo 8 years ago
parent
commit
a3b0858a3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/python_sccd/python_sccd_runtime/statecharts_core.py

+ 1 - 1
src/python_sccd/python_sccd_runtime/statecharts_core.py

@@ -958,7 +958,7 @@ class RuntimeClassBase(object):
         if index in self.timers_to_add:
             del self.timers_to_add[index]
         if index in self.timers:
-            self.removed_timers.add(self.timers[index].event_time)
+            self.removed_timers.add(self.timers[index])
             self.events.remove(self.timers[index])
             del self.timers[index]
         self.earliest_event_time = self.events.getEarliestTime()