summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-09-21 05:30:37 +0000
committerZac Medico <zmedico@gentoo.org>2008-09-21 05:30:37 +0000
commitdc2f3e687a04c121ac5a4ab8ca4652d5e57f51ed (patch)
tree82e9efe8f696f379d025c98c419485b696c55009
parent01b3ee6a8e47a1ce0c95bd5d4fec2ce38179c047 (diff)
downloadportage-dc2f3e687a04c121ac5a4ab8ca4652d5e57f51ed.tar.gz
portage-dc2f3e687a04c121ac5a4ab8ca4652d5e57f51ed.tar.bz2
portage-dc2f3e687a04c121ac5a4ab8ca4652d5e57f51ed.zip
Fix erroneous variable references in the multiset 'Redefinition of set'
message. svn path=/main/trunk/; revision=11528
-rw-r--r--pym/portage/sets/__init__.py2
1 files changed, 1 insertions, 1 deletions
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