summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Fritz <fritzy@netflint.net>2009-10-05 18:18:37 +0000
committerNathan Fritz <fritzy@netflint.net>2009-10-05 18:18:37 +0000
commita18051c1649bb4cef8b6d0b82f798051d6b21215 (patch)
tree54a560cc8a8ec760eac1daf4e2888934b7c23a2e
parent5dc967a360484e411706d3712b686de625d90b10 (diff)
downloadslixmpp-a18051c1649bb4cef8b6d0b82f798051d6b21215.tar.gz
slixmpp-a18051c1649bb4cef8b6d0b82f798051d6b21215.tar.bz2
slixmpp-a18051c1649bb4cef8b6d0b82f798051d6b21215.tar.xz
slixmpp-a18051c1649bb4cef8b6d0b82f798051d6b21215.zip
* fixed type-o
-rw-r--r--sleekxmpp/plugins/xep_0050.py2
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')]