diff options
author | Lance Stout <lancestout@gmail.com> | 2011-06-30 15:40:22 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-06-30 15:40:22 -0700 |
commit | 754ac5092a3a37819a71f6565a1e54b3f2547940 (patch) | |
tree | 8eac47a45f53e7f5bca0ffe312409dbb71924e42 /sleekxmpp/plugins/base.py | |
parent | 9ed972ffeba8f5071d5cae8497322764207fec04 (diff) | |
download | slixmpp-754ac5092a3a37819a71f6565a1e54b3f2547940.tar.gz slixmpp-754ac5092a3a37819a71f6565a1e54b3f2547940.tar.bz2 slixmpp-754ac5092a3a37819a71f6565a1e54b3f2547940.tar.xz slixmpp-754ac5092a3a37819a71f6565a1e54b3f2547940.zip |
Reorganize features into plugins.
Diffstat (limited to 'sleekxmpp/plugins/base.py')
-rw-r--r-- | sleekxmpp/plugins/base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/base.py b/sleekxmpp/plugins/base.py index 2dd68c8d..561421d8 100644 --- a/sleekxmpp/plugins/base.py +++ b/sleekxmpp/plugins/base.py @@ -66,7 +66,8 @@ class base_plugin(object): """ if config is None: config = {} - self.xep = 'base' + self.xep = None + self.rfc = None self.description = 'Base Plugin' self.xmpp = xmpp self.config = config |