Browse Source

stop calling DirectObject.__del__ because I took it out

Joe Shochet 19 years ago
parent
commit
53be5b62d9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/fsm/FSM.py

+ 1 - 1
direct/src/fsm/FSM.py

@@ -157,7 +157,7 @@ class FSM(DirectObject):
 
 
     def __del__(self):
     def __del__(self):
         self.cleanup()
         self.cleanup()
-        DirectObject.__del__(self)
+        # DirectObject.__del__(self)
 
 
     def cleanup(self):
     def cleanup(self):
         # A convenience function to force the FSM to clean itself up
         # A convenience function to force the FSM to clean itself up