summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-09-24 23:44:52 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-09-24 23:44:52 +0200
commitcac130e7543b30be7fbec6484b29191a9f8b1665 (patch)
treee32911ee97022cec9fb979779d373a0bcf2e3744 /src
parenteb096892a9ab3429ba0dcb9654a356afcd01932d (diff)
downloadpoezio-cac130e7543b30be7fbec6484b29191a9f8b1665.tar.gz
poezio-cac130e7543b30be7fbec6484b29191a9f8b1665.tar.bz2
poezio-cac130e7543b30be7fbec6484b29191a9f8b1665.tar.xz
poezio-cac130e7543b30be7fbec6484b29191a9f8b1665.zip
Autoload plugins
Diffstat (limited to 'src')
-rw-r--r--src/core.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py
index 55026967..0b8442ff 100644
--- a/src/core.py
+++ b/src/core.py
@@ -174,6 +174,12 @@ class Core(object):
self.xmpp.add_event_handler("chatstate_inactive", self.on_chatstate_inactive)
self.timed_events = set()
+ self.autoload_plugins()
+
+ def autoload_plugins(self):
+ plugins = config.get('plugins_autoload', '')
+ for plugin in plugins.split():
+ self.plugin_manager.load(plugin)
def coucou(self):
self.command_pubsub('pubsub.louiz.org')