diff options
Diffstat (limited to 'sleekxmpp/plugins/xep_0030/disco.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0030/disco.py | 2 |
1 files changed, 1 insertions, 1 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: |