summaryrefslogtreecommitdiffstats
path: root/pym/portage/env/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/env/config.py')
-rw-r--r--pym/portage/env/config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/env/config.py b/pym/portage/env/config.py
index a354dcf7d..bb63e35e8 100644
--- a/pym/portage/env/config.py
+++ b/pym/portage/env/config.py
@@ -6,7 +6,7 @@
from UserDict import UserDict
from portage.env.loaders import KeyListFileLoader, KeyValuePairFileLoader, ItemFileLoader
-class UserConfigKlass(UserDict,object):
+class UserConfigKlass(UserDict, object):
"""
A base class stub for things to inherit from.
Users may want a non-file backend.
@@ -19,6 +19,7 @@ class UserConfigKlass(UserDict,object):
@param loader: A class that has a load() that returns two dicts
the first being a data dict, the second being a dict of errors.
"""
+ UserDict.__init__(self)
self._loader = loader
def load(self):