summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--module/plugins/Base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/Base.py b/module/plugins/Base.py
index b96275db2..7825e1c49 100644
--- a/module/plugins/Base.py
+++ b/module/plugins/Base.py
@@ -150,11 +150,11 @@ class Base(object):
def getConf(self, option):
""" see `getConfig` """
- return self.core.config.get(self.__name__, option)
+ return self.getConfig(option)
def getConfig(self, option):
""" Returns config value for current plugin """
- return self.getConf(option)
+ return self.core.config.get(self.__name__, option)
def setStorage(self, key, value):
""" Saves a value persistently to the database """