diff options
author | Remko Tronçon <git@tramo.be> | 2009-07-11 18:20:47 +0000 |
---|---|---|
committer | Remko Tronçon <git@tramo.be> | 2009-07-11 18:20:47 +0000 |
commit | a1ece44368c472bb5ae61e0c4e4a244c07908a6e (patch) | |
tree | bc8533d19891fd7804176010b1fbd6f5692df2f2 /sleekxmpp | |
parent | ce8bf4a367af313dbf53e4a6ff2ee04a131f7cff (diff) | |
download | slixmpp-a1ece44368c472bb5ae61e0c4e4a244c07908a6e.tar.gz slixmpp-a1ece44368c472bb5ae61e0c4e4a244c07908a6e.tar.bz2 slixmpp-a1ece44368c472bb5ae61e0c4e4a244c07908a6e.tar.xz slixmpp-a1ece44368c472bb5ae61e0c4e4a244c07908a6e.zip |
Fixed typo.
Diffstat (limited to 'sleekxmpp')
-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 bbfd1c41..80025c8b 100644 --- a/sleekxmpp/plugins/xep_0050.py +++ b/sleekxmpp/plugins/xep_0050.py @@ -85,7 +85,7 @@ class xep_0050(base.base_plugin): results.fromXML(in_command.find('{jabber:x:data}x')) apply(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[command.get('sessionid')] + del self.sessions[in_command.get('sessionid')] def handler_command_next(self, xml): |