From 15abc2d1c53190891a03155e24f5cd0d7cac8ff7 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Tue, 17 Aug 2010 21:34:49 +0200 Subject: new config getter+setter in plugin --- module/plugins/Plugin.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'module') diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index ee823329c..210b1b7ff 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -153,7 +153,15 @@ class Plugin(object): """ gets a config value """ return self.config.getPlugin(self.__name__, option) - + def setConfig(self, option, value): + """ sets a config value """ + self.setConf(option, value) + + def getConfig(self, option): + """ gets a config value """ + return self.getConf(option) + + def setWait(self, seconds, reconnect=False): """ set the wait time to specified seconds """ if reconnect: -- cgit v1.2.3