*** empty log message ***

This commit is contained in:
Jesse Schell 2000-11-07 19:56:19 +00:00
parent f6f60684b1
commit 3fa8028d25
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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()))