Fix incorrect merge.
authorZac Medico <zmedico@gentoo.org>
Tue, 2 Mar 2010 22:55:54 +0000 (22:55 -0000)
committerZac Medico <zmedico@gentoo.org>
Tue, 2 Mar 2010 22:55:54 +0000 (22:55 -0000)
svn path=/main/branches/2.1.7/; revision=15726

pym/portage/_sets/__init__.py

index 73adafd3eb9b26ebc0b0e99f78e681a5f21f09c1..04937c37912ec586c9e42ede8c2520978a9b438c 100644 (file)
@@ -34,10 +34,11 @@ class SetConfigError(Exception):
 
 class SetConfig(object):
        def __init__(self, paths, settings, trees):
-               defaults={
-                       "PORTAGE_CONFIGROOT" : settings["PORTAGE_CONFIGROOT"],
-                       "ROOT" : settings["ROOT"],
-               })
+               self._parser = SafeConfigParser(
+                       defaults={
+                               "PORTAGE_CONFIGROOT" : settings["PORTAGE_CONFIGROOT"],
+                               "ROOT" : settings["ROOT"],
+                       })
                #self._parser.read(paths)
                # The "paths" argument is ignored and the config for
                # system and world sets is hardcoded below.