mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 16:58:40 -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'
|
||||
acceptorDict = self.dict[event]
|
||||
for object in acceptorDict.keys():
|
||||
method, extraArgs, persistent = acceptorDict[object]
|
||||
for object, (method, extraArgs, persistent) in acceptorDict.items():
|
||||
str = str + self.__methodRepr(method) + ' '
|
||||
str = str + '\n'
|
||||
return str
|
||||
|
Loading…
x
Reference in New Issue
Block a user