diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-26 23:04:16 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-26 23:04:16 -0700 |
commit | a06fa2de677afad437622216fac7971b727ac569 (patch) | |
tree | 37e8774a4cf2515bd31685c801d873ce4ef87127 /sleekxmpp/plugins/xep_0256.py | |
parent | 35396d2977f9b19f6690b88a7c2f3c7f4f09356b (diff) | |
download | slixmpp-a06fa2de677afad437622216fac7971b727ac569.tar.gz slixmpp-a06fa2de677afad437622216fac7971b727ac569.tar.bz2 slixmpp-a06fa2de677afad437622216fac7971b727ac569.tar.xz slixmpp-a06fa2de677afad437622216fac7971b727ac569.zip |
Enhance plugin config with attribute accessors.
This makes updating the config after plugin initialization much easier.
Diffstat (limited to 'sleekxmpp/plugins/xep_0256.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0256.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0256.py b/sleekxmpp/plugins/xep_0256.py index dd407fff..0db8ea3b 100644 --- a/sleekxmpp/plugins/xep_0256.py +++ b/sleekxmpp/plugins/xep_0256.py @@ -25,10 +25,11 @@ class XEP_0256(BasePlugin): description = 'XEP-0256: Last Activity in Presence' dependencies = set(['xep_0012']) stanza = stanza + default_config = { + 'auto_last_activity': False + } def plugin_init(self): - self.auto_last_activity = self.config.get('auto_last_activity', False) - register_stanza_plugin(Presence, LastActivity) self.xmpp.add_filter('out', self._initial_presence_activity) |