diff options
author | Lance Stout <lancestout@gmail.com> | 2012-02-18 11:56:10 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-02-18 11:56:10 -0800 |
commit | 977fcc06324d93422cb19e1550b280cd04e36f82 (patch) | |
tree | f6bbe985ba54ed4c0bc880cfb65eb66cc8412581 /sleekxmpp/plugins/xep_0030 | |
parent | 94b57d232d0fd1198835a93a013e1f9ff715d5eb (diff) | |
download | slixmpp-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_0030')
-rw-r--r-- | sleekxmpp/plugins/xep_0030/disco.py | 2 | ||||
-rw-r--r-- | sleekxmpp/plugins/xep_0030/static.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0030/disco.py b/sleekxmpp/plugins/xep_0030/disco.py index 2267401e..a6088635 100644 --- a/sleekxmpp/plugins/xep_0030/disco.py +++ b/sleekxmpp/plugins/xep_0030/disco.py @@ -754,7 +754,7 @@ class xep_0030(base_plugin): """ result = info if isinstance(info, Iq): - info = iq['disco_info'] + info = info['disco_info'] if not info['node']: if not info['identities']: if self.xmpp.is_component: diff --git a/sleekxmpp/plugins/xep_0030/static.py b/sleekxmpp/plugins/xep_0030/static.py index e0ac29c6..4972bdeb 100644 --- a/sleekxmpp/plugins/xep_0030/static.py +++ b/sleekxmpp/plugins/xep_0030/static.py @@ -11,7 +11,7 @@ import threading import sleekxmpp from sleekxmpp import Iq -from sleekxmpp.exceptions import XMPPError +from sleekxmpp.exceptions import XMPPError, IqError, IqTimeout from sleekxmpp.plugins.base import base_plugin from sleekxmpp.xmlstream.handler import Callback from sleekxmpp.xmlstream.matcher import StanzaPath |