From 3fa8028d25e39e2040a138a58365631c1d87fc78 Mon Sep 17 00:00:00 2001 From: Jesse Schell Date: Tue, 7 Nov 2000 19:56:19 +0000 Subject: [PATCH] *** empty log message *** --- direct/src/distributed/ClientDistUpdate.py | 3 ++- direct/src/distributed/DistributedObject.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/direct/src/distributed/ClientDistUpdate.py b/direct/src/distributed/ClientDistUpdate.py index 19ffe3fe65..02b625755e 100644 --- a/direct/src/distributed/ClientDistUpdate.py +++ b/direct/src/distributed/ClientDistUpdate.py @@ -47,7 +47,8 @@ class ClientDistUpdate: do.LocalToon_initialized except: func = eval(cdc.name + "." + cdc.name + "." + self.name) - print("Calling: " + cdc.name + "." + cdc.name + "." + self.name) + print("Calling: " + cdc.name + "." + cdc.name + "." + self.name + + " for do " + str(do.getDoId())) # Get the arguments into a list args = self.extractArgs(di) # Apply the function to the object with the arguments diff --git a/direct/src/distributed/DistributedObject.py b/direct/src/distributed/DistributedObject.py index 305c51407f..84619065cf 100644 --- a/direct/src/distributed/DistributedObject.py +++ b/direct/src/distributed/DistributedObject.py @@ -39,7 +39,7 @@ class DistributedObject(PandaObject): self.cr.sendUpdate(self, fieldName, args) def taskName(self, taskString): - return (taskString + "-" + str(self.getDoId)) + return (taskString + "-" + str(self.getDoId()))