diff options
author | Lance Stout <lancestout@gmail.com> | 2012-01-14 17:12:39 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-01-14 17:12:39 -0800 |
commit | 947d1ffbb3be39670729264a7f53c028d7ecb2e3 (patch) | |
tree | 9be1b1d97a237128d4b45d9bf8025c2145307c76 /sleekxmpp/plugins/xep_0030/disco.py | |
parent | de35848500ac2a7774f0d723226a406bade4e82a (diff) | |
download | slixmpp-947d1ffbb3be39670729264a7f53c028d7ecb2e3.tar.gz slixmpp-947d1ffbb3be39670729264a7f53c028d7ecb2e3.tar.bz2 slixmpp-947d1ffbb3be39670729264a7f53c028d7ecb2e3.tar.xz slixmpp-947d1ffbb3be39670729264a7f53c028d7ecb2e3.zip |
Fix xep_0030 reference warning.
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 58f4f20c..2267401e 100644 --- a/sleekxmpp/plugins/xep_0030/disco.py +++ b/sleekxmpp/plugins/xep_0030/disco.py @@ -106,7 +106,7 @@ class xep_0030(base_plugin): register_stanza_plugin(Iq, DiscoInfo) register_stanza_plugin(Iq, DiscoItems) - self.static = StaticDisco(self.xmpp) + self.static = StaticDisco(self.xmpp, self) self.use_cache = self.config.get('use_cache', True) self.wrap_results = self.config.get('wrap_results', False) |