From 117229c51a71e609f1bd60d00d1b7817d513bb28 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 3 Jun 2013 21:36:03 +0200 Subject: Inverted methods getConf <-> getConfig in plugins/base --- module/plugins/Base.py | 4 ++-- 1 file 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 """ -- cgit v1.2.3