From: Zac Medico Date: Tue, 2 Mar 2010 22:55:54 +0000 (-0000) Subject: Fix incorrect merge. X-Git-Tag: v2.1.8~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c6f3fd519642082b5e658a37755063678850b4ab;p=portage.git Fix incorrect merge. svn path=/main/branches/2.1.7/; revision=15726 --- diff --git a/pym/portage/_sets/__init__.py b/pym/portage/_sets/__init__.py index 73adafd3e..04937c379 100644 --- a/pym/portage/_sets/__init__.py +++ b/pym/portage/_sets/__init__.py @@ -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.