From: Zac Medico Date: Fri, 14 Apr 2006 08:51:22 +0000 (-0000) Subject: Fix a typo from the last revision. X-Git-Tag: v2.1_pre9~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5be662eb99f9036a8479e53bd6c7461e5508d278;p=portage.git Fix a typo from the last revision. svn path=/main/trunk/; revision=3145 --- diff --git a/pym/portage.py b/pym/portage.py index 832594431..888a914ef 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -5730,7 +5730,7 @@ class dblink: myslot = self.settings["SLOT"] for v in otherversions: # only allow versions with same slot to overwrite files - if myslot == db[self.myroot]["vartree"].dbapi.aux_get(v.mycpv, ["SLOT"])[0]: + if myslot == db[self.myroot]["vartree"].dbapi.aux_get("/".join((self.cat, v)), ["SLOT"])[0]: mypkglist.append(dblink(self.cat,v,destroot,self.settings)) print green("*")+" checking "+str(len(myfilelist))+" files for package collisions"