summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0066
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-02-18 11:56:10 -0800
committerLance Stout <lancestout@gmail.com>2012-02-18 11:56:10 -0800
commit977fcc06324d93422cb19e1550b280cd04e36f82 (patch)
treef6bbe985ba54ed4c0bc880cfb65eb66cc8412581 /sleekxmpp/plugins/xep_0066
parent94b57d232d0fd1198835a93a013e1f9ff715d5eb (diff)
downloadslixmpp-977fcc06324d93422cb19e1550b280cd04e36f82.tar.gz
slixmpp-977fcc06324d93422cb19e1550b280cd04e36f82.tar.bz2
slixmpp-977fcc06324d93422cb19e1550b280cd04e36f82.tar.xz
slixmpp-977fcc06324d93422cb19e1550b280cd04e36f82.zip
Fix instances of using undefined variables.
Diffstat (limited to 'sleekxmpp/plugins/xep_0066')
-rw-r--r--sleekxmpp/plugins/xep_0066/oob.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0066/oob.py b/sleekxmpp/plugins/xep_0066/oob.py
index d1f4b3ff..0e73de07 100644
--- a/sleekxmpp/plugins/xep_0066/oob.py
+++ b/sleekxmpp/plugins/xep_0066/oob.py
@@ -121,7 +121,7 @@ class xep_0066(base_plugin):
iq -- The Iq stanza containing the OOB transfer request.
"""
if iq['to'] in self.url_handlers['jid']:
- return self.url_handlers['jid'][jid](iq)
+ return self.url_handlers['jid'][iq['to']](iq)
else:
if self.url_handlers['global']:
self.url_handlers['global'](iq)