diff options
author | Lance Stout <lancestout@gmail.com> | 2010-10-24 17:33:11 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-10-24 17:33:11 -0400 |
commit | 1f09d60a52bb6401a7f14d60fdb35c5687a915d0 (patch) | |
tree | 22f70178add030ba2b0dcb255174e8a990c88e42 /sleekxmpp | |
parent | d5288847234110cc9116aaf91a26c5a1fc395202 (diff) | |
download | slixmpp-1f09d60a52bb6401a7f14d60fdb35c5687a915d0.tar.gz slixmpp-1f09d60a52bb6401a7f14d60fdb35c5687a915d0.tar.bz2 slixmpp-1f09d60a52bb6401a7f14d60fdb35c5687a915d0.tar.xz slixmpp-1f09d60a52bb6401a7f14d60fdb35c5687a915d0.zip |
ComponentXMPP saves all of its config data now.
ComponentXMPP was ignoring plugin_config and plugin_whitelist
parameters, making register_plugins() fail.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/componentxmpp.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py index d0901a2e..3fcb88d9 100644 --- a/sleekxmpp/componentxmpp.py +++ b/sleekxmpp/componentxmpp.py @@ -67,6 +67,8 @@ class ComponentXMPP(BaseXMPP): self.server_port = port self.set_jid(jid) self.secret = secret + self.plugin_config = plugin_config + self.plugin_whitelist = plugin_whitelist self.is_component = True self.register_handler( |