Special plugin loading case for xep_0115 no longer needed.

This commit is contained in:
Lance Stout 2012-08-23 00:23:32 -07:00
parent e510875f64
commit 1ca0c46333

View file

@ -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'):