From ed058d20adee90ce4847bf68981b4ec68b96f0c8 Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Mon, 23 May 2005 22:21:40 +0000 Subject: [PATCH] minor change --- direct/src/distributed/DoInterestManager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/direct/src/distributed/DoInterestManager.py b/direct/src/distributed/DoInterestManager.py index 4a05c3ddd5..1d0fd0b0b7 100755 --- a/direct/src/distributed/DoInterestManager.py +++ b/direct/src/distributed/DoInterestManager.py @@ -135,8 +135,8 @@ class DoInterestManager(DirectObject.DirectObject): def printInterests(self): print "*********************** Interest Sets **************" print "(Interest ID, Description, Scope, Event, Mode)" - for i in DoInterestManager._interests.keys(): - print DoInterestManager._interests[i] + for i in DoInterestManager._interests.values(): + print i print "****************************************************" for i in DoInterestManager._debug_currentInterests: print i