diff options
author | Matthias Schiffer <matthias@gamezock.de> | 2010-05-02 21:18:09 +0200 |
---|---|---|
committer | Matthias Schiffer <matthias@gamezock.de> | 2010-05-02 21:19:21 +0200 |
commit | d537d4b69b4547814f2d01bc18ce2c472b978647 (patch) | |
tree | 444f07b95e0e2333f9d5d264a8917dfbd7230f6a /connection | |
parent | 0277a779c9dff841e04a08a5c39fe07faa92cfe8 (diff) | |
download | curunir-d537d4b69b4547814f2d01bc18ce2c472b978647.tar curunir-d537d4b69b4547814f2d01bc18ce2c472b978647.zip |
Added log module
Diffstat (limited to 'connection')
-rw-r--r-- | connection/xmpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connection/xmpp.py b/connection/xmpp.py index 423cd2a..4104af7 100644 --- a/connection/xmpp.py +++ b/connection/xmpp.py @@ -29,7 +29,7 @@ class MucHandler(MucRoomHandler): if(user.same_as(self.room_state.me)): return - for mod in self.client.module_manager.modules: + for mod in self.client.module_manager.modules.itervalues(): mod.groupchat(stanza.get_from().bare().as_unicode(), stanza.get_from().resource, stanza.get_body(), self.room_state.send_message) def user_joined(self, user, stanza): |