summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-08-23 00:23:32 -0700
committerLance Stout <lancestout@gmail.com>2012-08-23 00:23:32 -0700
commit1ca0c463334f71214f8d78d63ec4220100cc7ff1 (patch)
tree070a98eec23c664842a9b165b761b4c908105e15
parente510875f649bc08adba3051785ce9140ca43137c (diff)
downloadslixmpp-1ca0c463334f71214f8d78d63ec4220100cc7ff1.tar.gz
slixmpp-1ca0c463334f71214f8d78d63ec4220100cc7ff1.tar.bz2
slixmpp-1ca0c463334f71214f8d78d63ec4220100cc7ff1.tar.xz
slixmpp-1ca0c463334f71214f8d78d63ec4220100cc7ff1.zip
Special plugin loading case for xep_0115 no longer needed.
-rw-r--r--sleekxmpp/basexmpp.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/sleekxmpp/basexmpp.py b/sleekxmpp/basexmpp.py
index 282c0c31..244d19c5 100644
--- a/sleekxmpp/basexmpp.py
+++ b/sleekxmpp/basexmpp.py
@@ -226,13 +226,6 @@ class BaseXMPP(XMLStream):
- The send queue processor
- The scheduler
"""
- if 'xep_0115' in self.plugin:
- name = 'xep_0115'
- if not hasattr(self.plugin[name], 'post_inited'):
- if hasattr(self.plugin[name], 'post_init'):
- self.plugin[name].post_init()
- self.plugin[name].post_inited = True
-
for name in self.plugin:
if not hasattr(self.plugin[name], 'post_inited'):
if hasattr(self.plugin[name], 'post_init'):