summaryrefslogtreecommitdiff
path: root/plugins/iq_show.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/iq_show.py')
-rw-r--r--plugins/iq_show.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/iq_show.py b/plugins/iq_show.py
index 77d50d6c..06d06d8e 100644
--- a/plugins/iq_show.py
+++ b/plugins/iq_show.py
@@ -7,7 +7,7 @@ class Plugin(BasePlugin):
self.core.xmpp.register_handler(Callback('Iq_show', StanzaPath('iq'), self.handle_iq))
def handle_iq(self, iq):
- self.core.information('%s' % iq, 'Iq')
+ self.api.information('%s' % iq, 'Iq')
def cleanup(self):
self.core.xmpp.remove_handler('Iq_show')