From 5d939e1e4d3642de49ade62d31eddbfeed38ad8c Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 6 Apr 2001 01:33:10 +0000 Subject: [PATCH] *** empty log message *** --- direct/src/distributed/ClientDistUpdate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/direct/src/distributed/ClientDistUpdate.py b/direct/src/distributed/ClientDistUpdate.py index f9b792d881..1963cdc536 100644 --- a/direct/src/distributed/ClientDistUpdate.py +++ b/direct/src/distributed/ClientDistUpdate.py @@ -54,7 +54,8 @@ class ClientDistUpdate: # Get the arguments into a list args = self.extractArgs(di) # Apply the function to the object with the arguments - apply(self.func, [do] + args) + if self.func != None: + apply(self.func, [do] + args) return None def extractArgs(self, di):