diff options
author | Nathan Fritz <fritzy@netflint.net> | 2009-10-05 18:18:37 +0000 |
---|---|---|
committer | Nathan Fritz <fritzy@netflint.net> | 2009-10-05 18:18:37 +0000 |
commit | a18051c1649bb4cef8b6d0b82f798051d6b21215 (patch) | |
tree | 54a560cc8a8ec760eac1daf4e2888934b7c23a2e /sleekxmpp/plugins/xep_0050.py | |
parent | 5dc967a360484e411706d3712b686de625d90b10 (diff) | |
download | slixmpp-a18051c1649bb4cef8b6d0b82f798051d6b21215.tar.gz slixmpp-a18051c1649bb4cef8b6d0b82f798051d6b21215.tar.bz2 slixmpp-a18051c1649bb4cef8b6d0b82f798051d6b21215.tar.xz slixmpp-a18051c1649bb4cef8b6d0b82f798051d6b21215.zip |
* fixed type-o
Diffstat (limited to 'sleekxmpp/plugins/xep_0050.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0050.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0050.py b/sleekxmpp/plugins/xep_0050.py index a030470b..8c7e10d9 100644 --- a/sleekxmpp/plugins/xep_0050.py +++ b/sleekxmpp/plugins/xep_0050.py @@ -82,7 +82,7 @@ class xep_0050(base.base_plugin): pointer = self.sessions[sessionid]['next'] results = self.xmpp['xep_0004'].makeForm('result') results.fromXML(in_command.find('{jabber:x:data}x')) - pointer(results,sessioni) + pointer(results,sessionid) self.xmpp.send(self.makeCommand(xml.attrib['from'], in_command.attrib['node'], form=None, id=xml.attrib['id'], sessionid=sessionid, status='completed', actions=[])) del self.sessions[in_command.get('sessionid')] |