summaryrefslogtreecommitdiffstats
path: root/connection
diff options
context:
space:
mode:
Diffstat (limited to 'connection')
-rw-r--r--connection/xmpp.py2
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):