David Rose 23 years ago
parent
commit
e5e32d60e2
1 changed files with 2 additions and 1 deletions
  1. 2 1
      direct/src/interval/IntervalManager.py

+ 2 - 1
direct/src/interval/IntervalManager.py

@@ -60,7 +60,8 @@ class IntervalManager(CIntervalManager):
 
         index = self.getNextEvent()
         while index >= 0:
-            self.ivals[index].privPostEvent()
+            if self.ivals[index]:
+                self.ivals[index].privPostEvent()
             index = self.getNextEvent()
         
     def __storeInterval(self, interval, index):