diff options
author | Lance Stout <lancestout@gmail.com> | 2011-03-23 19:00:20 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-03-23 19:00:20 -0400 |
commit | feb7f892ea5b1f046dba210db0cdd0cbdaeb1225 (patch) | |
tree | 672733cba11d44a7b306766090c79a3d16f2455e | |
parent | a420771665c1074282a1849784e071ba847872a9 (diff) | |
download | slixmpp-feb7f892ea5b1f046dba210db0cdd0cbdaeb1225.tar.gz slixmpp-feb7f892ea5b1f046dba210db0cdd0cbdaeb1225.tar.bz2 slixmpp-feb7f892ea5b1f046dba210db0cdd0cbdaeb1225.tar.xz slixmpp-feb7f892ea5b1f046dba210db0cdd0cbdaeb1225.zip |
Fix typo.
-rw-r--r-- | sleekxmpp/plugins/xep_0249/invite.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0249/invite.py b/sleekxmpp/plugins/xep_0249/invite.py index fdeffdea..95fcb37c 100644 --- a/sleekxmpp/plugins/xep_0249/invite.py +++ b/sleekxmpp/plugins/xep_0249/invite.py @@ -49,7 +49,7 @@ class xep_0249(base_plugin): log.debug("Received direct muc invitation from %s to room %s", msg['from'], msg['groupchat_invite']['jid']) - self.xmpp.event('groupchat_direct_invite', message) + self.xmpp.event('groupchat_direct_invite', msg) def send_invitation(self, jid, roomjid, password=None, reason=None, ifrom=None): |