From: Zac Medico Date: Sun, 21 Sep 2008 05:30:37 +0000 (-0000) Subject: Fix erroneous variable references in the multiset 'Redefinition of set' X-Git-Tag: v2.2_rc9~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=dc2f3e687a04c121ac5a4ab8ca4652d5e57f51ed;p=portage.git Fix erroneous variable references in the multiset 'Redefinition of set' message. svn path=/main/trunk/; revision=11528 --- diff --git a/pym/portage/sets/__init__.py b/pym/portage/sets/__init__.py index d688164b5..f88e1b6ee 100644 --- a/pym/portage/sets/__init__.py +++ b/pym/portage/sets/__init__.py @@ -65,7 +65,7 @@ class SetConfig(SafeConfigParser): continue for x in newsets: if x in self.psets: - self.errors.append("Redefinition of set '%s' (sections: '%s', '%s')" % (setname, self.psets[setname].creator, sname)) + self.errors.append("Redefinition of set '%s' (sections: '%s', '%s')" % (x, self.psets[x].creator, sname)) newsets[x].creator = sname if self.has_option(sname, "world-candidate") and not self.getboolean(sname, "world-candidate"): newsets[x].world_candidate = False