diff options
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/Plugin.py | 10 | 
1 files changed, 9 insertions, 1 deletions
| 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: | 
