Browse Source

remove old panda support

David Rose 18 years ago
parent
commit
c6be6a0821
1 changed files with 2 additions and 6 deletions
  1. 2 6
      direct/src/distributed/ClientRepositoryBase.py

+ 2 - 6
direct/src/distributed/ClientRepositoryBase.py

@@ -69,12 +69,8 @@ class ClientRepositoryBase(ConnectionRepository):
         class type is marked "deferrable".  Set this to 0 to indicate
         class type is marked "deferrable".  Set this to 0 to indicate
         no deferring will occur."""
         no deferring will occur."""
 
 
-        # Temporary condition for old Pandas.
-        if hasattr(self, 'setHandleCUpdates'):
-            self.deferInterval = deferInterval
-            self.setHandleCUpdates(self.deferInterval != 0)
-        else:
-            self.deferInterval = 0
+        self.deferInterval = deferInterval
+        self.setHandleCUpdates(self.deferInterval != 0)
 
 
         if self.deferredGenerates:
         if self.deferredGenerates:
             taskMgr.remove('deferredGenerate')
             taskMgr.remove('deferredGenerate')