From 7bc5d0de663ccb71d70855999188b4ca2b61869a Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 20 Oct 2014 22:52:41 +0200 Subject: Initialize PluginConfig properly --- src/plugin.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugin.py b/src/plugin.py index a2412e10..22a17eee 100644 --- a/src/plugin.py +++ b/src/plugin.py @@ -20,9 +20,8 @@ class PluginConfig(config.Config): and behave like the core Config object. """ def __init__(self, filename, module_name): - self.file_name = filename + config.Config.__init__(self, filename) self.module_name = module_name - RawConfigParser.__init__(self, None) self.read() def get(self, option, default, section=None): -- cgit v1.2.3