mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
fixed subtle bug in repr when object hash is bad
This commit is contained in:
parent
1cd0c6cbcf
commit
d5bff7418a
@ -307,8 +307,7 @@ class Messenger:
|
|||||||
"""
|
"""
|
||||||
str = event.ljust(32) + '\t'
|
str = event.ljust(32) + '\t'
|
||||||
acceptorDict = self.dict[event]
|
acceptorDict = self.dict[event]
|
||||||
for object in acceptorDict.keys():
|
for object, (method, extraArgs, persistent) in acceptorDict.items():
|
||||||
method, extraArgs, persistent = acceptorDict[object]
|
|
||||||
str = str + self.__methodRepr(method) + ' '
|
str = str + self.__methodRepr(method) + ' '
|
||||||
str = str + '\n'
|
str = str + '\n'
|
||||||
return str
|
return str
|
||||||
|
Loading…
x
Reference in New Issue
Block a user